From 887ecf665b4204ff2a434042b2384b51a60f7fc6 Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Fri, 30 Jun 2023 08:43:58 -0700 Subject: [PATCH 01/15] Add --source and --repo to containerapp create --- src/containerapp/azext_containerapp/_help.py | 12 ++++++ .../azext_containerapp/_params.py | 10 +++++ .../azext_containerapp/_up_utils.py | 16 +++++++ src/containerapp/azext_containerapp/custom.py | 43 +++++++++++++++++-- 4 files changed, 78 insertions(+), 3 deletions(-) diff --git a/src/containerapp/azext_containerapp/_help.py b/src/containerapp/azext_containerapp/_help.py index 2b2253e6ba2..dd3b2cfa9a3 100644 --- a/src/containerapp/azext_containerapp/_help.py +++ b/src/containerapp/azext_containerapp/_help.py @@ -61,6 +61,18 @@ --image my-app:v1.0 --environment MyContainerappEnv \\ --secrets mysecret=secretvalue1 anothersecret="secret value 2" \\ --secret-volume-mount "mnt/secrets" + - name: Create a container app from a dockerfile in a GitHub repo (setting up github actions) + text: | + az containerapp create -n MyContainerapp -g MyResourceGroup \\ + --environment MyContainerappEnv --registry-server MyRegistryServer \\ + --registry-user MyRegistryUser --registry-pass MyRegistryPass \\ + --repo https://github.com/myAccount/myRepo + - name: Create a container app from a dockerfile in a local directory (or autogenerate a container if no dockerfile is found) + text: | + az containerapp create -n MyContainerapp -g MyResourceGroup \\ + --environment MyContainerappEnv --registry-server MyRegistryServer \\ + --registry-user MyRegistryUser --registry-pass MyRegistryPass \\ + --source . """ helps['containerapp update'] = """ diff --git a/src/containerapp/azext_containerapp/_params.py b/src/containerapp/azext_containerapp/_params.py index d9ab5e06e5d..30e4ebda3cf 100644 --- a/src/containerapp/azext_containerapp/_params.py +++ b/src/containerapp/azext_containerapp/_params.py @@ -121,6 +121,7 @@ def load_arguments(self, _): c.argument('workload_profile_name', options_list=['--workload-profile-name', '-w'], help="Name of the workload profile to run the app on.", is_preview=True) c.argument('secret_volume_mount', help="Path to mount all secrets e.g. mnt/secrets", is_preview=True) c.argument('termination_grace_period', type=int, options_list=['--termination-grace-period', '--tgp'], help="Duration in seconds a replica is given to gracefully shut down before it is forcefully terminated. (Default: 30)", is_preview=True) + c.argument('source', help="Local directory path containing the application source and Dockerfile for building the container image. Preview: If no Dockerfile is present, a container image is generated using buildpacks. If Docker is not running or buildpacks cannot be used, Oryx will be used to generate the image. See the supported Oryx runtimes here: https://github.com/microsoft/Oryx/blob/main/doc/supportedRuntimeVersions.md.") with self.argument_context('containerapp create', arg_group='Identity') as c: c.argument('user_assigned', nargs='+', help="Space-separated user identities to be assigned.") @@ -135,6 +136,15 @@ def load_arguments(self, _): c.argument('service_type', help="The service information for dev services.") c.ignore('service_type') + with self.argument_context('containerapp create', arg_group='Github Repo') as c: + c.argument('repo', help='Create an app via Github Actions. In the format: https://github.com// or /') + c.argument('token', help='A Personal Access Token with write access to the specified repository. For more information: https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line. If not provided or not found in the cache (and using --repo), a browser page will be opened to authenticate with Github.') + c.argument('branch', options_list=['--branch', '-b'], help='The branch of the Github repo. Assumed to be the Github repo\'s default branch if not specified.') + c.argument('context_path', help='Path in the repo from which to run the docker build. Defaults to "./". Dockerfile is assumed to be named "Dockerfile" and in this directory.') + c.argument('service_principal_client_id', help='The service principal client ID. Used by Github Actions to authenticate with Azure.', options_list=["--service-principal-client-id", "--sp-cid"]) + c.argument('service_principal_client_secret', help='The service principal client secret. Used by Github Actions to authenticate with Azure.', options_list=["--service-principal-client-secret", "--sp-sec"]) + c.argument('service_principal_tenant_id', help='The service principal tenant ID. Used by Github Actions to authenticate with Azure.', options_list=["--service-principal-tenant-id", "--sp-tid"]) + with self.argument_context('containerapp show') as c: c.argument('show_secrets', help="Show Containerapp secrets.", action='store_true') diff --git a/src/containerapp/azext_containerapp/_up_utils.py b/src/containerapp/azext_containerapp/_up_utils.py index 8a984251efc..78f8c217712 100644 --- a/src/containerapp/azext_containerapp/_up_utils.py +++ b/src/containerapp/azext_containerapp/_up_utils.py @@ -771,6 +771,22 @@ def _validate_up_args(cmd, source, image, repo, registry_server): raise ValidationError(f"--registry-server ACR name must be less than {MAXIMUM_SECRET_LENGTH} " "characters when using --repo") +def _validate_create_args(cmd, source, repo, registry_server, registry_user, registry_pass): + if source and repo: + raise MutuallyExclusiveArgumentError( + "Cannot use --source and --repo togther. " + "Can either deploy from a local directory or a Github repo" + ) + if source or repo: + if not registry_server or not registry_user or not registry_pass: + raise RequiredArgumentMissingError('Usage error: --registry-server, --registry-username and --registry-password are required while using --source or --repo.') + if repo and registry_server and "azurecr.io" in registry_server: + parsed = urlparse(registry_server) + registry_name = (parsed.netloc if parsed.scheme else parsed.path).split(".")[0] + if registry_name and len(registry_name) > MAXIMUM_SECRET_LENGTH: + raise ValidationError(f"--registry-server ACR name must be less than {MAXIMUM_SECRET_LENGTH} " + "characters when using --repo") + def _reformat_image(source, repo, image): if source and (image or repo): diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 52044d80795..9210707cd46 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -406,6 +406,7 @@ def create_containerapp(cmd, resource_group_name, yaml=None, image=None, + source=None, container_name=None, managed_env=None, min_replicas=None, @@ -448,11 +449,22 @@ def create_containerapp(cmd, registry_identity=None, workload_profile_name=None, termination_grace_period=None, - secret_volume_mount=None): + secret_volume_mount=None, + repo=None, + token=None, + branch=None, + context_path=None, + service_principal_client_id=None, + service_principal_client_secret=None, + service_principal_tenant_id=None): + from ._up_utils import (_validate_create_args,_reformat_image,_get_dockerfile_content, _get_ingress_and_target_port,ContainerApp,ResourceGroup,ContainerAppEnvironment, _get_registry_details, _create_github_action, + get_token, _has_dockerfile) + from ._github_oauth import cache_github_token register_provider_if_needed(cmd, CONTAINER_APPS_RP) validate_container_app_name(name, AppType.ContainerApp.name) validate_create(registry_identity, registry_pass, registry_user, registry_server, no_wait) validate_revision_suffix(revision_suffix) + _validate_create_args(cmd, source, repo, registry_server, registry_user, registry_pass) if registry_identity and not is_registry_msi_system(registry_identity): logger.info("Creating an acrpull role assignment for the registry identity") @@ -465,9 +477,12 @@ def create_containerapp(cmd, startup_command or args or tags: not disable_warnings and logger.warning('Additional flags were passed along with --yaml. These flags will be ignored, and the configuration defined in the yaml will be used instead') return create_containerapp_yaml(cmd=cmd, name=name, resource_group_name=resource_group_name, file_name=yaml, no_wait=no_wait) - + imageNotProvided = False if not image: + imageNotProvided = True image = HELLO_WORLD_IMAGE + token = get_token(cmd, repo, token) + dockerfile = "Dockerfile" if managed_env is None: raise RequiredArgumentMissingError('Usage error: --environment is required if not using --yaml') @@ -690,6 +705,24 @@ def create_containerapp(cmd, else: set_managed_identity(cmd, resource_group_name, containerapp_def, user_assigned=[registry_identity]) try: + image = None if imageNotProvided else _reformat_image(source,repo,image) + resource_group = ResourceGroup(cmd, name=resource_group_name, location=location) + env = ContainerAppEnvironment(cmd, managed_env, resource_group, location=location) + app = ContainerApp(cmd, name, resource_group, None, image, env, target_port, registry_server, registry_user, registry_pass, env_vars, workload_profile_name, ingress) + + if source or repo: + _get_registry_details(cmd,app,source) # fetch ACR creds from arguments registry arguments + + if source and not _has_dockerfile(source, dockerfile): + pass + else: + dockerfile_content = _get_dockerfile_content(repo, branch, token, source, context_path, dockerfile) + ingress, target_port = _get_ingress_and_target_port(ingress, target_port, dockerfile_content) + + app.create_acr_if_needed() + if source: + app.run_acr_build(dockerfile, source, quiet=False, build_from_source=not _has_dockerfile(source, dockerfile)) + container_def["image"] = app.image r = ContainerAppClient.create_or_update( cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_def, no_wait=no_wait) @@ -731,7 +764,11 @@ def create_containerapp(cmd, linker_client.linker.begin_create_or_update(resource_uri=r["id"], parameters=item["parameters"], linker_name=item["linker_name"]).result() - + if repo: + _create_github_action(app, env, service_principal_client_id, service_principal_client_secret, + service_principal_tenant_id, branch, token, repo, context_path) + cache_github_token(cmd, token, repo) + r = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name) return r except Exception as e: handle_raw_exception(e) From 011439a8140f4ff088ac18690a26a30c88d5d99e Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Thu, 6 Jul 2023 09:13:04 -0700 Subject: [PATCH 02/15] Refactored code for containerapp create --- .../azext_containerapp/_validators.py | 18 +++- .../containerapp_decorator.py | 91 ++++++++++++++++++- src/containerapp/azext_containerapp/custom.py | 11 ++- 3 files changed, 114 insertions(+), 6 deletions(-) diff --git a/src/containerapp/azext_containerapp/_validators.py b/src/containerapp/azext_containerapp/_validators.py index f77455f4706..1c61c07a3f7 100644 --- a/src/containerapp/azext_containerapp/_validators.py +++ b/src/containerapp/azext_containerapp/_validators.py @@ -6,21 +6,33 @@ import re from azure.cli.core.azclierror import (ValidationError, ResourceNotFoundError, InvalidArgumentValueError, - MutuallyExclusiveArgumentError) + MutuallyExclusiveArgumentError, RequiredArgumentMissingError) 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, is_registry_msi_system -from ._constants import ACR_IMAGE_SUFFIX, LOG_TYPE_SYSTEM +from ._constants import ACR_IMAGE_SUFFIX, LOG_TYPE_SYSTEM, MAXIMUM_SECRET_LENGTH +from urllib.parse import urlparse 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): +def validate_create(registry_identity, registry_pass, registry_user, registry_server, no_wait, source=None, repo=None): + if source and repo: + raise MutuallyExclusiveArgumentError("Cannot use --source and --repo together. ""Can either deploy from a local directory or a Github repo") + if source or repo: + if not registry_server or not registry_user or not registry_pass: + raise RequiredArgumentMissingError('Usage error: --registry-server, --registry-username and --registry-password are required while using --source or --repo.') + if repo and registry_server and "azurecr.io" in registry_server: + parsed = urlparse(registry_server) + registry_name = (parsed.netloc if parsed.scheme else parsed.path).split(".")[0] + if registry_name and len(registry_name) > MAXIMUM_SECRET_LENGTH: + raise ValidationError(f"--registry-server ACR name must be less than {MAXIMUM_SECRET_LENGTH} " + "characters when using --repo") 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: diff --git a/src/containerapp/azext_containerapp/containerapp_decorator.py b/src/containerapp/azext_containerapp/containerapp_decorator.py index 696597082fc..6613d72c32f 100644 --- a/src/containerapp/azext_containerapp/containerapp_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_decorator.py @@ -62,6 +62,8 @@ from ._constants import (CONTAINER_APPS_RP, HELLO_WORLD_IMAGE) +from ._github_oauth import cache_github_token + logger = get_logger(__name__) @@ -152,6 +154,30 @@ def get_argument_no_wait(self): def get_argument_yaml(self): return self.get_param("yaml") + def get_argument_source(self): + return self.get_param("source") + + def get_argument_repo(self): + return self.get_param("repo") + + def get_argument_branch(self): + return self.get_param("branch") + + def get_argument_token(self): + return self.get_param("token") + + def get_argument_context_path(self): + return self.get_param("context_path") + + def get_argument_service_principal_client_id(self): + return self.get_param("service_principal_client_id") + + def get_argument_service_principal_client_secret(self): + return self.get_param("service_principal_client_secret") + + def get_argument_service_principal_tenant_id(self): + return self.get_param("service_principal_tenant_id") + def get_argument_image(self): return self.get_param("image") @@ -314,7 +340,7 @@ def __init__( def validate_arguments(self): validate_container_app_name(self.get_argument_name(), AppType.ContainerApp.name) - validate_create(self.get_argument_registry_identity(), self.get_argument_registry_pass(), self.get_argument_registry_user(), self.get_argument_registry_server(), self.get_argument_no_wait()) + validate_create(self.get_argument_registry_identity(), self.get_argument_registry_pass(), self.get_argument_registry_user(), self.get_argument_registry_server(), self.get_argument_no_wait(), self.get_argument_source(), self.get_argument_repo()) validate_revision_suffix(self.get_argument_revision_suffix()) def construct_containerapp(self): @@ -524,6 +550,10 @@ def construct_containerapp(self): set_managed_identity(self.cmd, self.get_argument_resource_group_name(), containerapp_def, system_assigned=True) else: set_managed_identity(self.cmd, self.get_argument_resource_group_name(), containerapp_def, user_assigned=[self.get_argument_registry_identity()]) + + if self.get_argument_source(): + app = self.set_up_create_containerapp_if_source_or_repo(containerapp_def=containerapp_def) + containerapp_def = self.set_up_create_containerapp_source(app=app,containerapp_def=containerapp_def) return containerapp_def def create_containerapp(self, containerapp_def): @@ -553,7 +583,7 @@ def construct_containerapp_for_post_process(self, containerapp_def, r): registries_def["server"] = self.get_argument_registry_server() registries_def["identity"] = self.get_argument_registry_identity() safe_set(containerapp_def, "properties", "configuration", "registries", value=[registries_def]) - return containerapp_def + return containerapp_def def post_process_containerapp(self, containerapp_def, r): if is_registry_msi_system(self.get_argument_registry_identity()): @@ -580,6 +610,63 @@ def post_process_containerapp(self, containerapp_def, r): linker_client.linker.begin_create_or_update(resource_uri=r["id"], parameters=item["parameters"], linker_name=item["linker_name"]).result() + + if self.get_argument_repo(): + app = self.set_up_create_containerapp_if_source_or_repo(containerapp_def=containerapp_def) + r = self.set_up_create_containerapp_repo(app=app,r=r, env=app.env, env_rg = app.resource_group.name) + return r + + def set_up_create_containerapp_if_source_or_repo(self, containerapp_def): + from ._up_utils import (ContainerApp, ResourceGroup, ContainerAppEnvironment,_reformat_image) + + # Parse resource group name and managed env name + env_id = containerapp_def["properties"]['environmentId'] + parsed_managed_env = parse_resource_id(env_id) + env_name = parsed_managed_env['name'] + env_rg = parsed_managed_env['resource_group'] + + # Parse location + env_info = self.get_environment_client().show(cmd=self.cmd, resource_group_name=env_rg, name=env_name) + location =env_info['location'] + + # Set image to None if it was previously set to the default image (case where image was not provided by the user) else reformat it + image = None if self.get_argument_image().__eq__(HELLO_WORLD_IMAGE) else _reformat_image(self.get_argument_source(), self.get_argument_repo(), self.get_argument_image()) + + # Construct ContainerApp + resource_group = ResourceGroup(self.cmd, env_rg, location = location) + env = ContainerAppEnvironment(self.cmd, env_name, resource_group, location=location) + app = ContainerApp(self.cmd,self.get_argument_name() , resource_group, None, image, env, self.get_argument_target_port(), self.get_argument_registry_server(), self.get_argument_registry_user(), self.get_argument_registry_pass(), self.get_argument_env_vars(), self.get_argument_workload_profile_name(), self.get_argument_ingress()) + + return app + + def set_up_create_containerapp_source(self, app, containerapp_def): + from ._up_utils import (_get_registry_details, get_token, _has_dockerfile, _get_dockerfile_content, _get_ingress_and_target_port) + dockerfile = "Dockerfile" + token = get_token(self.cmd, self.get_argument_repo(), self.get_argument_token()) + _get_registry_details(self.cmd,app,self.get_argument_source()) # fetch ACR creds from arguments registry arguments + + if self.get_argument_source() and not _has_dockerfile(self.get_argument_source(), dockerfile): + pass + else: + dockerfile_content = _get_dockerfile_content(self.get_argument_repo(), self.get_argument_branch(), token, self.get_argument_source(), self.get_argument_context_path(), dockerfile) + ingress, target_port = _get_ingress_and_target_port(self.get_argument_ingress(), self.get_argument_target_port(), dockerfile_content) + + # Uses buildpacks to generate image if Dockerfile was not provided by the user + app.run_acr_build(dockerfile, self.get_argument_source(), quiet=False, build_from_source=not _has_dockerfile(self.get_argument_source(), dockerfile)) + + # Update image + containerapp_def["properties"]["template"]["containers"][0]["image"] = HELLO_WORLD_IMAGE if app.image is None else app.image + + return containerapp_def + + def set_up_create_containerapp_repo(self,app,r,env,env_rg): + from ._up_utils import (_create_github_action, get_token) + # Get GitHub access token + token = get_token(self.cmd, self.get_argument_repo(), self.get_argument_token()) + _create_github_action(app, env, self.get_argument_service_principal_client_id(), self.get_argument_service_principal_client_secret(), + self.get_argument_service_principal_tenant_id(), self.get_argument_branch(), token, self.get_argument_repo(), self.get_argument_context_path()) + cache_github_token(self.cmd, token, self.get_argument_repo()) + r = self.client.show(cmd=self.cmd, resource_group_name=env_rg, name=app.name) return r def set_up_create_containerapp_yaml(self, name, file_name): diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 6883c6bfe9b..55a8003105d 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -449,7 +449,15 @@ def create_containerapp(cmd, registry_identity=None, workload_profile_name=None, termination_grace_period=None, - secret_volume_mount=None): + secret_volume_mount=None, + source=None, + repo=None, + token=None, + branch=None, + context_path=None, + service_principal_client_id=None, + service_principal_client_secret=None, + service_principal_tenant_id=None): raw_parameters = locals() containerapp_create_decorator = ContainerAppCreateDecorator( @@ -465,6 +473,7 @@ def create_containerapp(cmd, r = containerapp_create_decorator.create_containerapp(containerapp_def) containerapp_def = containerapp_create_decorator.construct_containerapp_for_post_process(containerapp_def, r) r = containerapp_create_decorator.post_process_containerapp(containerapp_def, r) + return r From 916259cd0e5cdcc47bc577312a58fd222932ab9d Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Thu, 6 Jul 2023 09:23:52 -0700 Subject: [PATCH 03/15] Removed extra source param --- src/containerapp/azext_containerapp/custom.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 8cd5e08724a..b842611aa5d 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -407,7 +407,6 @@ def create_containerapp(cmd, resource_group_name, yaml=None, image=None, - source=None, container_name=None, managed_env=None, min_replicas=None, @@ -474,7 +473,7 @@ def create_containerapp(cmd, r = containerapp_create_decorator.create_containerapp(containerapp_def) containerapp_def = containerapp_create_decorator.construct_containerapp_for_post_process(containerapp_def, r) r = containerapp_create_decorator.post_process_containerapp(containerapp_def, r) - + return r From 143912066f1ec10ddc0221b0cb3e3aefe80523ee Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Thu, 6 Jul 2023 09:30:05 -0700 Subject: [PATCH 04/15] Addressed PR comments --- src/containerapp/azext_containerapp/_help.py | 4 ++-- src/containerapp/azext_containerapp/_validators.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/containerapp/azext_containerapp/_help.py b/src/containerapp/azext_containerapp/_help.py index dd3b2cfa9a3..3e8d26fe813 100644 --- a/src/containerapp/azext_containerapp/_help.py +++ b/src/containerapp/azext_containerapp/_help.py @@ -61,13 +61,13 @@ --image my-app:v1.0 --environment MyContainerappEnv \\ --secrets mysecret=secretvalue1 anothersecret="secret value 2" \\ --secret-volume-mount "mnt/secrets" - - name: Create a container app from a dockerfile in a GitHub repo (setting up github actions) + - name: Create a container app from a new GitHub Actions workflow in the provided GitHub repository text: | az containerapp create -n MyContainerapp -g MyResourceGroup \\ --environment MyContainerappEnv --registry-server MyRegistryServer \\ --registry-user MyRegistryUser --registry-pass MyRegistryPass \\ --repo https://github.com/myAccount/myRepo - - name: Create a container app from a dockerfile in a local directory (or autogenerate a container if no dockerfile is found) + - name: Create a Container App from the provided application source text: | az containerapp create -n MyContainerapp -g MyResourceGroup \\ --environment MyContainerappEnv --registry-server MyRegistryServer \\ diff --git a/src/containerapp/azext_containerapp/_validators.py b/src/containerapp/azext_containerapp/_validators.py index 1c61c07a3f7..50ef828418c 100644 --- a/src/containerapp/azext_containerapp/_validators.py +++ b/src/containerapp/azext_containerapp/_validators.py @@ -23,7 +23,7 @@ # 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, source=None, repo=None): if source and repo: - raise MutuallyExclusiveArgumentError("Cannot use --source and --repo together. ""Can either deploy from a local directory or a Github repo") + raise MutuallyExclusiveArgumentError("Cannot use --source and --repo together. ""Can either deploy from a local directory or a Github repository") if source or repo: if not registry_server or not registry_user or not registry_pass: raise RequiredArgumentMissingError('Usage error: --registry-server, --registry-username and --registry-password are required while using --source or --repo.') From fb7f4feabd375f7c1ef7401b8deb4782fbfe2c79 Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Thu, 6 Jul 2023 09:53:11 -0700 Subject: [PATCH 05/15] Removed new line --- src/containerapp/azext_containerapp/custom.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index b842611aa5d..4d061b92bf4 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -473,7 +473,6 @@ def create_containerapp(cmd, r = containerapp_create_decorator.create_containerapp(containerapp_def) containerapp_def = containerapp_create_decorator.construct_containerapp_for_post_process(containerapp_def, r) r = containerapp_create_decorator.post_process_containerapp(containerapp_def, r) - return r From d18d6c7fb7282dbb6ecd285ff87276407b8d6935 Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Thu, 6 Jul 2023 13:19:39 -0700 Subject: [PATCH 06/15] Fixed linting errors --- .../azext_containerapp/_up_utils.py | 17 ---------------- .../azext_containerapp/_validators.py | 2 +- .../containerapp_decorator.py | 20 +++++++++---------- 3 files changed, 11 insertions(+), 28 deletions(-) diff --git a/src/containerapp/azext_containerapp/_up_utils.py b/src/containerapp/azext_containerapp/_up_utils.py index 78f8c217712..be7ddadb855 100644 --- a/src/containerapp/azext_containerapp/_up_utils.py +++ b/src/containerapp/azext_containerapp/_up_utils.py @@ -60,7 +60,6 @@ LOG_ANALYTICS_RP, CONTAINER_APPS_RP, ACR_IMAGE_SUFFIX, - MAXIMUM_CONTAINER_APP_NAME_LENGTH, ACR_TASK_TEMPLATE, DEFAULT_PORT) @@ -771,22 +770,6 @@ def _validate_up_args(cmd, source, image, repo, registry_server): raise ValidationError(f"--registry-server ACR name must be less than {MAXIMUM_SECRET_LENGTH} " "characters when using --repo") -def _validate_create_args(cmd, source, repo, registry_server, registry_user, registry_pass): - if source and repo: - raise MutuallyExclusiveArgumentError( - "Cannot use --source and --repo togther. " - "Can either deploy from a local directory or a Github repo" - ) - if source or repo: - if not registry_server or not registry_user or not registry_pass: - raise RequiredArgumentMissingError('Usage error: --registry-server, --registry-username and --registry-password are required while using --source or --repo.') - if repo and registry_server and "azurecr.io" in registry_server: - parsed = urlparse(registry_server) - registry_name = (parsed.netloc if parsed.scheme else parsed.path).split(".")[0] - if registry_name and len(registry_name) > MAXIMUM_SECRET_LENGTH: - raise ValidationError(f"--registry-server ACR name must be less than {MAXIMUM_SECRET_LENGTH} " - "characters when using --repo") - def _reformat_image(source, repo, image): if source and (image or repo): diff --git a/src/containerapp/azext_containerapp/_validators.py b/src/containerapp/azext_containerapp/_validators.py index 50ef828418c..296e6145009 100644 --- a/src/containerapp/azext_containerapp/_validators.py +++ b/src/containerapp/azext_containerapp/_validators.py @@ -26,7 +26,7 @@ def validate_create(registry_identity, registry_pass, registry_user, registry_se raise MutuallyExclusiveArgumentError("Cannot use --source and --repo together. ""Can either deploy from a local directory or a Github repository") if source or repo: if not registry_server or not registry_user or not registry_pass: - raise RequiredArgumentMissingError('Usage error: --registry-server, --registry-username and --registry-password are required while using --source or --repo.') + raise RequiredArgumentMissingError('Usage error: --registry-server, --registry-username and --registry-password are required while using --source or --repo.') if repo and registry_server and "azurecr.io" in registry_server: parsed = urlparse(registry_server) registry_name = (parsed.netloc if parsed.scheme else parsed.path).split(".")[0] diff --git a/src/containerapp/azext_containerapp/containerapp_decorator.py b/src/containerapp/azext_containerapp/containerapp_decorator.py index 6613d72c32f..cbb8d118d41 100644 --- a/src/containerapp/azext_containerapp/containerapp_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_decorator.py @@ -553,7 +553,7 @@ def construct_containerapp(self): if self.get_argument_source(): app = self.set_up_create_containerapp_if_source_or_repo(containerapp_def=containerapp_def) - containerapp_def = self.set_up_create_containerapp_source(app=app,containerapp_def=containerapp_def) + containerapp_def = self.set_up_create_containerapp_source(app=app, containerapp_def=containerapp_def) return containerapp_def def create_containerapp(self, containerapp_def): @@ -613,11 +613,11 @@ def post_process_containerapp(self, containerapp_def, r): if self.get_argument_repo(): app = self.set_up_create_containerapp_if_source_or_repo(containerapp_def=containerapp_def) - r = self.set_up_create_containerapp_repo(app=app,r=r, env=app.env, env_rg = app.resource_group.name) + r = self.set_up_create_containerapp_repo(app=app, r=r, env=app.env, env_rg=app.resource_group.name) return r def set_up_create_containerapp_if_source_or_repo(self, containerapp_def): - from ._up_utils import (ContainerApp, ResourceGroup, ContainerAppEnvironment,_reformat_image) + from ._up_utils import (ContainerApp, ResourceGroup, ContainerAppEnvironment, _reformat_image) # Parse resource group name and managed env name env_id = containerapp_def["properties"]['environmentId'] @@ -627,15 +627,15 @@ def set_up_create_containerapp_if_source_or_repo(self, containerapp_def): # Parse location env_info = self.get_environment_client().show(cmd=self.cmd, resource_group_name=env_rg, name=env_name) - location =env_info['location'] + location = env_info['location'] # Set image to None if it was previously set to the default image (case where image was not provided by the user) else reformat it image = None if self.get_argument_image().__eq__(HELLO_WORLD_IMAGE) else _reformat_image(self.get_argument_source(), self.get_argument_repo(), self.get_argument_image()) # Construct ContainerApp - resource_group = ResourceGroup(self.cmd, env_rg, location = location) + resource_group = ResourceGroup(self.cmd, env_rg, location=location) env = ContainerAppEnvironment(self.cmd, env_name, resource_group, location=location) - app = ContainerApp(self.cmd,self.get_argument_name() , resource_group, None, image, env, self.get_argument_target_port(), self.get_argument_registry_server(), self.get_argument_registry_user(), self.get_argument_registry_pass(), self.get_argument_env_vars(), self.get_argument_workload_profile_name(), self.get_argument_ingress()) + app = ContainerApp(self.cmd, self.get_argument_name(), resource_group, None, image, env, self.get_argument_target_port(), self.get_argument_registry_server(), self.get_argument_registry_user(), self.get_argument_registry_pass(), self.get_argument_env_vars(), self.get_argument_workload_profile_name(), self.get_argument_ingress()) return app @@ -643,13 +643,13 @@ def set_up_create_containerapp_source(self, app, containerapp_def): from ._up_utils import (_get_registry_details, get_token, _has_dockerfile, _get_dockerfile_content, _get_ingress_and_target_port) dockerfile = "Dockerfile" token = get_token(self.cmd, self.get_argument_repo(), self.get_argument_token()) - _get_registry_details(self.cmd,app,self.get_argument_source()) # fetch ACR creds from arguments registry arguments + _get_registry_details(self.cmd, app, self.get_argument_source()) # fetch ACR creds from arguments registry arguments if self.get_argument_source() and not _has_dockerfile(self.get_argument_source(), dockerfile): pass else: - dockerfile_content = _get_dockerfile_content(self.get_argument_repo(), self.get_argument_branch(), token, self.get_argument_source(), self.get_argument_context_path(), dockerfile) - ingress, target_port = _get_ingress_and_target_port(self.get_argument_ingress(), self.get_argument_target_port(), dockerfile_content) + dockerfile_content = _get_dockerfile_content(self.get_argument_repo(), self.get_argument_branch(), token, self.get_argument_source(), self.get_argument_context_path(), dockerfile) + ingress, target_port = _get_ingress_and_target_port(self.get_argument_ingress(), self.get_argument_target_port(), dockerfile_content) # Uses buildpacks to generate image if Dockerfile was not provided by the user app.run_acr_build(dockerfile, self.get_argument_source(), quiet=False, build_from_source=not _has_dockerfile(self.get_argument_source(), dockerfile)) @@ -659,7 +659,7 @@ def set_up_create_containerapp_source(self, app, containerapp_def): return containerapp_def - def set_up_create_containerapp_repo(self,app,r,env,env_rg): + def set_up_create_containerapp_repo(self, app, r, env, env_rg): from ._up_utils import (_create_github_action, get_token) # Get GitHub access token token = get_token(self.cmd, self.get_argument_repo(), self.get_argument_token()) From 78181aa5c038d47817603d09032eefef3f4fddb0 Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Thu, 6 Jul 2023 13:26:11 -0700 Subject: [PATCH 07/15] Remove new line --- src/containerapp/azext_containerapp/containerapp_decorator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/containerapp/azext_containerapp/containerapp_decorator.py b/src/containerapp/azext_containerapp/containerapp_decorator.py index cbb8d118d41..e556d9d5161 100644 --- a/src/containerapp/azext_containerapp/containerapp_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_decorator.py @@ -656,7 +656,6 @@ def set_up_create_containerapp_source(self, app, containerapp_def): # Update image containerapp_def["properties"]["template"]["containers"][0]["image"] = HELLO_WORLD_IMAGE if app.image is None else app.image - return containerapp_def def set_up_create_containerapp_repo(self, app, r, env, env_rg): From d646bd1d6ecbd7ff8bcf33a72e22a53cf04196e5 Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Thu, 6 Jul 2023 13:35:16 -0700 Subject: [PATCH 08/15] Minor fixes for GitHub repo params --- src/containerapp/azext_containerapp/_params.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/containerapp/azext_containerapp/_params.py b/src/containerapp/azext_containerapp/_params.py index 30e4ebda3cf..cf28b5a8ad8 100644 --- a/src/containerapp/azext_containerapp/_params.py +++ b/src/containerapp/azext_containerapp/_params.py @@ -136,14 +136,14 @@ def load_arguments(self, _): c.argument('service_type', help="The service information for dev services.") c.ignore('service_type') - with self.argument_context('containerapp create', arg_group='Github Repo') as c: - c.argument('repo', help='Create an app via Github Actions. In the format: https://github.com// or /') + with self.argument_context('containerapp create', arg_group='GitHub Repository') as c: + c.argument('repo', help='Create an app via GitHub Actions in the format: https://github.com// or /') c.argument('token', help='A Personal Access Token with write access to the specified repository. For more information: https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line. If not provided or not found in the cache (and using --repo), a browser page will be opened to authenticate with Github.') - c.argument('branch', options_list=['--branch', '-b'], help='The branch of the Github repo. Assumed to be the Github repo\'s default branch if not specified.') - c.argument('context_path', help='Path in the repo from which to run the docker build. Defaults to "./". Dockerfile is assumed to be named "Dockerfile" and in this directory.') - c.argument('service_principal_client_id', help='The service principal client ID. Used by Github Actions to authenticate with Azure.', options_list=["--service-principal-client-id", "--sp-cid"]) - c.argument('service_principal_client_secret', help='The service principal client secret. Used by Github Actions to authenticate with Azure.', options_list=["--service-principal-client-secret", "--sp-sec"]) - c.argument('service_principal_tenant_id', help='The service principal tenant ID. Used by Github Actions to authenticate with Azure.', options_list=["--service-principal-tenant-id", "--sp-tid"]) + c.argument('branch', options_list=['--branch', '-b'], help='Branch in the provided GitHub repository. Assumed to be the GitHub repository\'s default branch if not specified.') + c.argument('context_path', help='Path in the repository to run docker build. Defaults to "./". Dockerfile is assumed to be named "Dockerfile" and in this directory.') + c.argument('service_principal_client_id', help='The service principal client ID. Used by GitHub Actions to authenticate with Azure.', options_list=["--service-principal-client-id", "--sp-cid"]) + c.argument('service_principal_client_secret', help='The service principal client secret. Used by GitHub Actions to authenticate with Azure.', options_list=["--service-principal-client-secret", "--sp-sec"]) + c.argument('service_principal_tenant_id', help='The service principal tenant ID. Used by GitHub Actions to authenticate with Azure.', options_list=["--service-principal-tenant-id", "--sp-tid"]) with self.argument_context('containerapp show') as c: c.argument('show_secrets', help="Show Containerapp secrets.", action='store_true') From 56e68d47c0b787bf3f31985b0eea6a2967695f60 Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Sat, 8 Jul 2023 00:24:06 -0700 Subject: [PATCH 09/15] Addressed PR comments --- .../azext_containerapp/_validators.py | 2 +- .../containerapp_decorator.py | 2 +- ...tainerapp_create_source_and_image_e2e.yaml | 6253 ++++++++++++++++ ...app_create_source_with_Dockerfile_e2e.yaml | 6359 +++++++++++++++++ ...rapp_create_source_with_buildpack_e2e.yaml | 3706 ++++++++++ .../tests/latest/test_containerapp_create.py | 46 + .../azext_containerapp/tests/latest/utils.py | 68 +- 7 files changed, 16433 insertions(+), 3 deletions(-) create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py diff --git a/src/containerapp/azext_containerapp/_validators.py b/src/containerapp/azext_containerapp/_validators.py index 296e6145009..8488ecd1cd0 100644 --- a/src/containerapp/azext_containerapp/_validators.py +++ b/src/containerapp/azext_containerapp/_validators.py @@ -23,7 +23,7 @@ # 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, source=None, repo=None): if source and repo: - raise MutuallyExclusiveArgumentError("Cannot use --source and --repo together. ""Can either deploy from a local directory or a Github repository") + raise MutuallyExclusiveArgumentError("Cannot use --source and --repo together. Can either deploy from a local directory or a GitHub repository") if source or repo: if not registry_server or not registry_user or not registry_pass: raise RequiredArgumentMissingError('Usage error: --registry-server, --registry-username and --registry-password are required while using --source or --repo.') diff --git a/src/containerapp/azext_containerapp/containerapp_decorator.py b/src/containerapp/azext_containerapp/containerapp_decorator.py index e556d9d5161..9b12a19a2bf 100644 --- a/src/containerapp/azext_containerapp/containerapp_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_decorator.py @@ -583,7 +583,7 @@ def construct_containerapp_for_post_process(self, containerapp_def, r): registries_def["server"] = self.get_argument_registry_server() registries_def["identity"] = self.get_argument_registry_identity() safe_set(containerapp_def, "properties", "configuration", "registries", value=[registries_def]) - return containerapp_def + return containerapp_def def post_process_containerapp(self, containerapp_def, r): if is_registry_msi_system(self.get_argument_registry_identity()): diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml new file mode 100644 index 00000000000..765b9410cb2 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml @@ -0,0 +1,6253 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.5809927Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-08T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.5809927Z","modifiedDate":"2023-07-08T07:13:10.5809927Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop","name":"workspace-clitestrgpqo2bynzrtzy7hehcnoop","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop?api-version=2021-12-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.5809927Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-08T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.5809927Z","modifiedDate":"2023-07-08T07:13:10.5809927Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop","name":"workspace-clitestrgpqo2bynzrtzy7hehcnoop","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop/sharedKeys?api-version=2020-08-01 + response: + body: + string: '{"primarySharedKey":"389YnmxLTJkJRgFKtzjwFE7Z5vv70KAFO+LmvZgVLcqcLdXEQ1IBMHdsJOcU+FLpBqMsWcmnuhe+NnLHb3ogXA==","secondarySharedKey":"GDIydpzMbXCBmt2FVJghKV8ezPT+tTZfl8vI12tdZ05dRPGZltUxD6EJ7+6/XdaDCoymsSwlmkyacFKc3/EqzQ=="}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + cache-control: + - no-cache + content-length: + - '223' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "195ea9f3-216c-4464-8ece-fc706923d2db", + "sharedKey": "389YnmxLTJkJRgFKtzjwFE7Z5vv70KAFO+LmvZgVLcqcLdXEQ1IBMHdsJOcU+FLpBqMsWcmnuhe+NnLHb3ogXA=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '450' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1531' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"Succeeded","startTime":"2023-07-08T07:13:22.1084785"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1531' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true, "anonymousPullEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0645891Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03349060-1d5f-11ee-8240-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1380' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03349060-1d5f-11ee-8240-bce92fa43675?api-version=2022-02-01-preview + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03349060-1d5f-11ee-8240-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0645891Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0645891Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview + response: + body: + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"D7fYCIg+KkHystIf/t6bRg8pXnvg5i9uVEt6x8OqHj+ACRAxyVUI"},{"name":"password2","value":"DDwNbtI3kWY740V90khXYtjzvsZtDhQQA51ReXc/EU+ACRDuroEq"}]}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '214' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1531' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1531' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 08 Jul 2023 07:14:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1531' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '234' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2g77p3nurkfjlsjzrkvxkrnxzjie3ecuq5z27v67wn7kn2bp7yzzyx7opqwakn6t/providers/Microsoft.ContainerRegistry/registries/containerappsnfatmtjjrri","name":"containerappsnfatmtjjrri","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T06:22:59.1080657Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T06:22:59.1080657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdksh6adyzsdtsskn73xjpztc7ysyosa4zupycqyveoabwax62cwrjjnvtscg76ndb/providers/Microsoft.ContainerRegistry/registries/containerapptcr7ww3ydgnx","name":"containerapptcr7ww3ydgnx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:37:34.4109563Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:37:34.4109563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cmn735q7w2nwwebppb5clx7mirv4xiylykhjye674ol2n3ijchndft46d3fsuw2r/providers/Microsoft.ContainerRegistry/registries/containerappimdj6e7r2gye","name":"containerappimdj6e7r2gye","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:53:07.4694556Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:53:07.4694556Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv4b4fipvuwf57kz3fxssmj7tpfpzncvupsohhfjr55gmfxvww3272nz4kbqvczmbn/providers/Microsoft.ContainerRegistry/registries/containerappq73aloxzz2f4","name":"containerappq73aloxzz2f4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:24.1395549Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:24.1395549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeligh3rsqvhhs3g3u4omisskxfsz7mofruquyma4xt26fgbbxxfst7j6ozmafmfjp/providers/Microsoft.ContainerRegistry/registries/containerappe26fbem5qobi","name":"containerappe26fbem5qobi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:11:09.2869299Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:11:09.2869299Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn5isfsnaihp2s342ghm2p3kpf45eg4fau5rqhhonew7c6mqfrzgn6ojvsjpodwpby/providers/Microsoft.ContainerRegistry/registries/containerapppsi7catvaru2","name":"containerapppsi7catvaru2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpih42vas4rxn6y2mg7ziqfpwydfd7v3fdcujs6qji6xofmp26r5cfvqrho64jx5j/providers/Microsoft.ContainerRegistry/registries/containerappht4ujbqscf6c","name":"containerappht4ujbqscf6c","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '8430' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0645891Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - '2022-12-01' + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 08 Jul 2023 07:14:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview + response: + body: + string: '{"uploadUrl":"https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/source/202307080000/dab98162-003c-4d09-8744-bbd6032671de.tar.gz?sv=2021-12-02&se=2023-07-08T08%3A14%3A26Z&sr=b&sp=cw&sig=f58JNUY4HPVE8odw7htPBebycBEEGTU3zD0filJbOJE%3D","relativePath":"source/202307080000/dab98162-003c-4d09-8744-bbd6032671de.tar.gz"}' + headers: + cache-control: + - no-cache + content-length: + - '352' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: !!binary | + H4sICNEMqWQC/2J1aWxkX2FyY2hpdmVfMjI2YzUzY2U2NjlmNDcyMDk3ZTQ2MGVhMzg2MGUyMzEu + dGFyAO09+XcUx5lkN/sL+3jPf0Jl/DYRfsylYwRCkpEBByUcWkm243Ucp2emJDX0dI+7eyRknuO8 + zXr37fGSzcbJyz6v4yQ2NhgL22BuMMa3uQ8JARIIJCEMuhBIIA659quq7pmeQwIcGBNTn/0xre6q + 7/vq+o7q6iqP1+OdVSEtnYelMNYn3RHwcRjv1+fLy0tc0/t+f36BfxJaOikLEDNMSQf2t7uQfyWQ + W4giphzBJf7A9IBvRsH0GbmewsL86YGCyZMEfPPBmwUedDwUFhaOP/7TrgtzC32TUIEY/3ccPEL/ + C/0v9P89C1I0amDTlNVawzMH12NFi0awanoWG5p6O8d/IBAYd/zn5uWmjP/8wty8Scgnxv8dh2VT + JiPkmoNNSVZweK6ua7rhKkKmHsPT2KP5Wm0t9A64x5LyO/NpT0ncYhRqpJhiwj1XuVqj6RHJlDXV + NS2eYIEc0jVDqzE9ZUZ0ITZnazqmqR+TdJXS5wmfpT/wD/wvxqaw/2L8C/svIFv2/3ba/Fuy/7mF + KeM/Nz8/IOx/9uz/12HkuXtRpihaAw7P0wyT+h2uB1zC+Av7L+y/sP8CsgEVUi027vAk8C3P//p9 + uQVi/lfof9H+Qv8LyIL+Z/N+npBRZ0aUrMd//oJA6vxvbkHAL+K/bMDglu2zotAHpkyeFdHCWEGs + Kyygl3DLCv0elXHDHMmUnnBVy6aCXU+iEuRiCV0zWbg2ZXJxnR+FFMkwSlwmXmq6w5Jai3VXKe9Z + xd46fylNlJsxUZmKME2HtFAopus4jBrqZAWjqK6FsGFA5IgatZiOdPx0DBsmJZdbSrnOkmtQDhPW + U1WnNVTy5+XhqVMmW6IXR0vt6BT+MExdU2tLrXSofE5Rsde6h4pDQKd0FqcWp1TsZbctYl5KzSpv + XqnjfQmi2UCsPFpKm2VVgxSNUuFNDZl1OM7ekS/BHqv1MlwxYmHZiCpSo4HC1rw8khPhNpKCWsxk + BHmlmXWSGa85D/BnUsalsLlWQwanxE6GRp0WU8Lq90wUBKqqFKQ8gSMIEFW0RvgDSqLIISaA4YlL + zTmUmygkqdA6RkwxQVRbflp0A6uGbMr1OKkINboWQXhpCEcZQVpBWA2jmIF1w8OJPgzcFS0kKSBD + MMamJ6ZZot1aZQYbkTXDlZSvrKpi4dzq2Ysq5z41d+Gj5ZWLFi6Yu7A6M4l6SZc5Y21CvlxyCUoC + dQFqJc4Uai/eMML/E/6f8P8E3K3+H/xk2f/Ly08d/3l+cAmF/5eV4lMblWne3rOgPgTe3cQJPJXS + M5rOOlE8bVWjYeKIZ44s1aqaYcoh+mjKZFWKYCMqhTCqBuP4GA6WRaO5vtw8X4GH5Y+7bE9UQjrw + CvBsKVSHc+bEdO40lCDfNDRfC9l/JSWz73sWaiqehhZqVSaICKnoSoapT1qUy0EiHZeppgy+CLie + jdXaEqxaT6OxILg43EF1uMGoCFH5LJeYJlyW8CitPGD/oeQPorjbiJahWmzOpJ7HTMQcxpQcQU1T + UJLPikpK0Xc4IU+5sTCmKIv0uZGo2ZiTcGtnJlHS5XrJxOBrSGFNVRpROX2Ng/XihOyl6CmF3ZuZ + QYREspxMOXnGqYlsjmJTsChDFcdZ2I8yFbhek8Nokfp9bOaMT9NRGagsBG6jbDZ6ZlPHVjUf9MDt + Bx9E80wzOltTaQDhqdahP5WHMW1QOVUE6+dZoeSF/yf0v/D/BIzr/5WrYbz065r/8+X7/Wnzf7mF + wv/7Wub/WFe4mfm/eVoEI5o1MQcYluuT5vdCYJjp/J41EZWYIrQmiNz5rtLHsBICStYMoTVlNx9L + uj3RVSyhOh3XlLjqwPAbRV5vWAsZnkjcIYXcXsmIqtj0huhyk9JgTFbC1BEFH5POvBioQTbrUFlV + hWfh3GpEXddir1TqsebJvCB16T274kTYf2H/hf0X9j9h/7M+/+ML+NPnf/KE/c+W/b+tU0C3MM+T + NN+ScDsmnm8Zb84jkX/COY9EspxMObM153H3zFMI+y/sv7D/97r9r6BqNdR4h2YAbvj9R0F+mv33 + ifc/X0/8b3WFm5kBsJKiCg2MXaM1DQBRfumstORWeM+WpTxi0BUcssEmD+iSCr7KhS/xMWQTf8/g + dh5IRxlpz924ckLE/8L+C/sv4Jtn/2/3DMAN4//c1Pn/vAJfvrD/91L873Q7vtoMgJPChHMAzoQ5 + mXNne+3D1zcLIOy/sP/C/t/r9r+qTtJx+E59Bnrr33/C+A+I7z+F/hftL/S/gKzp/6fmS41azLzd + 08A3iP/y832B1P3/8vxi/jdb8V/xd+Ysml39eMVcRFudfaYJv0iR1NoSF1Zd7A6YB3t5VgSbEgpB + jzGwWeKKmTXu6S7kTXpKY8ASV72MG6KabrpQiK7XViF1gxw260rCuF4OYTf7YxqSVdmUJcVthCQF + 9JDH56Bm0unjDPPJyJ0WXRZ7eWIrpyKrSyBIVEpchtmoYKMOYxCEryT7mVeRg96gppmGqUtRb1g2 + TG/IMBK3PBFZhWFgOESZmCDNTeeueSbJiLqlaBSrYXc91g1ZU0tc9EOEmyaXFjrzRDdDvdhrNVZx + UAs3xtfeMfvu/BZWleKL9eAyKOmI/7jx0qgEpI2IfcOEGFfB9ANIx01Frq0zUbDW3VAHxUZBTQf6 + 7qBmmloE/lrqNuogQG9AkaA7z1WaHD47FwrSriHJamKZYFJCKVlEd1AH0awa0LFU4uLX9E1CiYsv + Y3GVpvcMKRPtYAxkVVMY8LLqLmQ2RoEkT+NCYeh87qBhPaZSK4oUNbDjiaTX0vHgsQglUtCPR920 + mLqmxBlVxaJ0aODwbD40XOkC2sDy80bB4RJXjaTEqSpSkPagaiYVbRm5lm/JVZqZXLEBVDKX2C2H + aL5iL02Sqbq8vC4yPXI0Z0rpUfyCdii3rEK3x+4aBS9Fi0HzyjWNbks3uIPYbMB4fNFjSgoP2oEp + JXetrjW4/eNltEabI7MbOmxkouRpXc/NRqv1zbq+5EYdcB5b0CpNJBBooLtAXmvWy1VqXXxloYu9 + MSVjp+GLaye6V+wFgeMf2CfpqRvqieII3EIwrqAw9NJlp45m0DqzKkFjYv0h0IrOabhiL80ZF4AL + Z/1VA/YA6zZRS8eZWhRZD1gNR2IwjJOkuhn19t2QFm2ciaiGymDM4BY06FdqNWf9Fnu5oIkSGSFd + jprI0EO2GVz8dAzrjdwG8mtm/BYbTBmw5KXjZk6xoYudJjQYU8MKvkliiy3zuXgi++akwanMkhok + 2US8ZatwiCq/MqNRDeW4qlhKwzWNbRshg39bhJjunEptpGUbocNRn+fe9f9F/C/ifxH/i/g/Q/xP + g41sxP/+QF7q+q8Cv0/s/5St+N/7AKqA8A58dAODn66FYnRTG2uvIRPd3GdX3pAiUy/ekMPYyyy/ + rNa6aRwJ9l+usbYOmjKZbypE13sZiAZfmloj18Z0vlEOXROma4vBjNNlYdx/YNvpMBqNyKBShVAD + /a7LMLBpeNADXuoKSB5nfMjfrLK41M3eRBchlW49pLDXtMxnkyB8VYsQ/0CN3W4A5w6yY2lJEWI/ + kEaxv2yTOEkIZjS9CN1PX2eEQvZDT9BU3VFdjkh6Y3K6mpoaRjsohZZAkALlcduP/MEADuXyp9yt + jD+ZHvBLCeLUm4/KClSXx3bsPRL9NB5PQ86HRh0E26WJRLdfEof7u8yRGv4uQv7oUmRoihxG9+MC + +h/P5UmeFnBm47fGzcnyxicRrIz230XIhzy5BTqOIE8h+9Frg1KObxri/3t8BVNtMjxqhSqjm025 + +XpCTq9GY/31GegefqDBaoCFp3WYzm0UIVmtw7psxgWynH6WOarRba006ENSEMSHEMCqQV4qH+9T + dIILqPt8/zAzQ5dsAC85nWvAF106M2ubYAv/T/h/wv8T/h/3/x4FuxhmltqKnivoJnaS8pe9Ebrh + +v9Ayvv/XJpB+H/Zev8z3pyQuz7eHZKmh6zbGad2boaYO6ZqQVOPGeDEpNF0PMtEX4xYYf/F+Bf2 + X8DttP9P0Rfs5RH6RtK4/R8B3sj++wMFqes//P4CYf+zZP9n8fX9qa+gpkyedeOl/LOkcLhaqp2H + lShExg9MG/8rgXgqQxhxYf+F/Rf2X8DdZf+r6I71d2ILgBvZf1/6/s8F9PwnYf+zY/+tD9H4yz/6 + Yb/1HtA1U5zFKOy/sP/C/gv4xtp/XavVpcjt3/Tv5u2/31eYGv9D+C++/8gK1Es6Yhvmsq/ZeYhv + H/Tkma1jycQP8cc5kl5r8BMIvF5UFg4jA+v0Ow7DPt8qvtbVQ1+7s0yeKiuNBzIkNgrI4XQocyka + BcZ2csYrJ85ltrU8hB/5NK+6usI+AwxF5Sim782BFz0E7Dv0iKW5iTObPOWG44SmnKmJE8FowkcM + PNc+fWqeRJeZ6DkufgqKa6r1MT+wp0dmhfmZ12heVXUVqpeUGEaygfJ8KCw1Gh70uBZDEakRNUgq + W7QSqqNnmvG1LHStS1TXwjG2LBUZIaxKuqwZ09hCG3tdjbRE8kQMay0NXUrjrjNM+xQsS9h5cCcn + vqTBvkkJVOKwrPN1ryyB9ayKrZR5WFbidW09qAS/TlZrk2+Wxcw6TZefkeJk+KMFUjStzej9yhhP + JdSn8P+E/yf8PwF/zf5fFOumfCcPAf8K+z/k5ReI/R+E/hftL/S/gCzpf0WKqaG6Kn5WruFZbGhq + duL/QG7q+C/IzRPv/7MCLCh2QZRaQ2NFV5G9K50r9Y1/4hE8DGmRCITNC6UIhvuuCv7RhmtaPAHv + Sw/pWoOBdUhCP99MPHWcrfyodbSy4aQPSTIfz0yZOcL6+EfzzyZohzUT4miIUBdgw6Bxaxp3x1HW + j+gKJWmH4uy86TrNMIsKQRXOpLeT7haAYbJ42hxd5eVVaO7SqA7cJqoiSGan+vpqKUX0OVpoCeM7 + rtRWipuVmD+1KnVZVagOR/CzUIPLrFmgeVCJzxbZf1VouvmsgzbbLNGoK1MU+iS93WIGrqqab92O + b5hol8cly4atuxzduEFWwyAsneGgp0TyZndZXwLbFSGpmtoY0WLpyRwSUAaZGjpzd0rqN/m+GXkB + R0kNgxUR0ubn5xX4nGXJ9g6Qwv8T/p/w/+5dSFvYFzLoJ5i3ffxP+P4nz5d2/oNfnP+UFSi2fDdU + FV5S4kqs3gS3wgO3PNA3XNZuG8VWrND4fV2LRe1tPKrZvkcP6+AxNGj6klJwvgIeX7E39b6VnJ5r + TT2ZUqzSn2Jv/IaVoDxCzalsPkIXpRrxZCm3rcSPGGzXDx2bRnm4tCA/EPYXhHPdwenTZ7jzQ8Fc + 93Qpd4a7IOgLYakQ5wakGcXe5DwWIe7ozOHverjoi6pK58tqbGmxN/PDpJzUe7YOpaYHS6bfZBXo + Ta1BdrfcxJGkKq2QQkvAc63ENVjHagijcjWkxMLY2T6PykZMUqrMWFjWPGXPxHTsmW2/fjM81Zqm + wL9MVMOFHrV3UfF7/IWeXHsXMqhVB2u6GYrVGcR3NvcMCP9P+H/C/7t3oaGhQdc003snedz6+x9f + Yb5fvP8R+l+0v9D/ArKh/+n+xXeP/vcX5An9L/S/aH+h/wVkTf/b+9ffifE/0fd/eb7c1PnfXHH+ + b3aAHfWQth1evr0FHT0WGIdlCeVEZNVt7WdXGJgeXTqV50rkT6YQYBT4C01KJpEusXOejhWJbmTI + ElL69hZ41oZ5fP8+LWzt1xeR9FpIZG+xZ++TJ8awsP9i/Av7L+Avsf81Uj09AMQD/9yR8T++/ffn + 5gdSz3/K8xXmCfufHfjWpL+ZhBD9RZNW3Ddp0nfh3n338b/rvj1p0l64zoF7kGTSrEn8PoWf35eR + 3N8B/v2tYk5OztS3VjdteaupadPqpjc5vvnGptWrVm5qemPFpqaVr29qWvH6prdWvr5hNcUVrwEu + d+BrG/7l58/9Z9uxo+To4RZyhGEzxxYbD3FsPkRaGR6M47bNm8jprk6G3Z2nSPepk6Tr5AnSdeI4 + 6TzeBniMdLYdJZ3HjpBTx1rJqaOHAVuS8I3lr2zv6e4iY6OXyHWGI+T6ZYrD5NolwJGLgBcYXh0e + AjzP8eIgOdZ8gHx5/RoZu3aVjF29QsaujHIal618w5DnIqS9MAg4QK4M9afhlnVrGf/rVy6Toc49 + pGfnH0nPrj+R0zv/QE5//gdyYv8W0n70SHL9WHXz3tbNjP+XlP814H/V5j8CsltyU5mTZEjIcRWu + t6xP8O/Z9Wey9/ezyb4Xv0/2/G8Z4ENk37v/wepmzK6b0UTdtLW2cP6OOhjoPUsGzn1BBs6eIf1f + 9JD+M92kv6eb9J3uIqdPtMfl4L+DwP9d4N8NdXeFnNm9nOx/8QfkwMsV5NCrP2J4YPMLTDaOzjYa + Ju1HKP/rSfwHe8+RkaHzTIbh8/0gw+mEDD1dvC4cuGXDuu09p7tZ3jN7lkPZy0nzaz8mB/6wkOx/ + 6Ydk//pfOvjbMvB6YPzHrlttwGUY7OslIxc4/5HzA6T/bI8lA5eDtocTt25cz/lD+32x93Vy4KX5 + pOX1n3D+/zef8ad1w3GUDA/2QV2eIr3dJ8nezz6y+Cfq4NLFCyDDuUQ7ONsCkPfnBG7duGF7T89p + Mnb9Kvli3wrGt2XFT1kb7H9pAdm/4Ve8b1s4PNgP/DtJL8iw7/OPgf9Yog5SxwKtL6s/2mPq+iUH + wt/bNm20+F8D/iuh/AvIYSf/9b/iffuaxR/atK+nk9XB3s8/IZcvXbJwhFweGSaXhy+SSxShHi5d + HCKXLgyx9hgZGsyIa995m/Mfu0bOHlhFDv3pEdK6qoYc+vOj5OAfq8iBjf/D6oYhlG0Yxk3fmU4m + wz7gf/78IDk/SHGA40A/Od/fTwb7+zhCf+B4jvXNAQfSv99d8872Mz09rB7PHniTHHz5H0nryhA5 + BLwPQh0c2PjfrG44Uv4DSfyPHgHdcKSVHGm18bClJwBbWkhrHJsz4vJXXonzP3dwNWl55XFytGkx + aVn+T6T5lR+RgzD+aN0wBBmGoc76znQxGfbt/ISchrG7d88ecsSSwdkfneNizO4blq6i9dR16hRp + WrVq+5kzPQQykl7K/8+PkaNvyqTl1cdJM1wf3PSC1cd4PxuG9uyDcURx785PGX8bu+PYxbHLgfR+ + V1carm5qAv5nyJdffkl6D71NDr/6Y3JsdYS0vvYTkOEJcnDL7xz8x6AvAX8Yz30wnvfu/IycPn06 + DdesWUMOHDiQhGua3iDN+3YzndnW2kzaQI//5je/edHj8dyf4P8OOfzKE+RY0xImB22LQ5t/y+qG + YoJ/D5Oh9dABqPvdDHeBLLs+57h544b49a7PPyW7PvuU7Pn0Q3Kx/yy3aZZtWLdu3b9R20/5U+hv + WUuOvh4k7W/r8BsiR177KWne8nsmG8Mk/lyGYRhbFHmbdMX7JtURtp6guqq3uwP4n0vYVcANGzYk + 8e9rXkNaX/0JaVutkSPLfwrXT0L5f5fgDzhy0cm/h8kz4ugTSTLE5TjF5Bge6E2yX5s2bUop/zpy + bAUmJ9Y0kBPvNrLfIx+tIAn4EnTLBabT0/izPjGxDMODvUk2dMvWLcn8m98lR1+TyPG3dPZ7ZPlT + pHnz75P4j1y8SPoo/7Op/Hl79H3RnZAD7J2tKzn/viQ7um3btpTyrydtK2tZudvekMkxuG7Z9n/E + CVS39p3r4XUASNsj0SZ8XED5x0COMVYPFv/ebsb/GvC/AngN+F9777330uv/9TA58U4MeNew65at + L6bxt3kz/sOcf/+5M2nI5QFZejj/iyn1//7725P4D7RsIG0r7PIvZnWRqfyM9lmOI9AfKGbkf47K + SNuE1QfT3Xb9j0L/27FjRzL/w8B/pUw61jSS9lVLWBu0bHuJ3C4YA718DWzo6OgouXDhAvnggw8y + lJ/zP/6mCjKAHvxgecby3wzS9umFNjgL/fAc9McLYDuugB9zEfpwb28v+fDDDyn/v02UfyNpf0Mh + J1brTIaT635G2nat+0r8KW/Kk2LXyePkJMQCZ8HO9INt7gK9v2/fPnLs2LHngOS3nPXfDuU/vkoh + 7dAO7SsXp9X/zfCnZbZ5U/zg/e0E+jrZvn072bx5M7tua2vbTnk7+V/qbWdtQOuBykJ/Ow59dOv8 + z3D+9Jfi++9tY7rz8uXL5FRnJ+ns7IzzdvLPBBM9Gw+uQz+z8erVq+Tjjz8ml8BHO3nyZBpvinCP + DAwMZMSOjo5b7+dgpyhS3iMjI7SfUb7UNqfxvhHu37//uVvlT+v6Gvg9lDftbzt37qT+xy3zptjc + 3PzcIPiX49VPJqQ8z507R3rArzsFPlZ7e/uEvL/uuQw6T3GfNVdhz1PM+nZ6uuaDB36xb8/u5/ft + 3mXhzuf37qL4+fPbt23dtHf3ruN7dn5+fPdnnxzf9clHx3d//GHbro93tO36aEfb+rdX7xga6CPD + Zw6ToVM7ycCp/eQcxIRnIS492w19o/Mk802pfqa+AYv1IT61Y+WO1uaOIajbtrUxiEsgLlulJsWi + fRBn0fzUFg3S2IvaB6A/BOOR0uk4erhjCOLB9nVLyUGILfavjACvUXIVeFG/5Cykpf7yKMQw5/t7 + GQ0ar9Fn1Fc72Xa0Ywj0Z/v6ZeQQ+OX731BZPDQKMRz1bbpPdZCrlN7oZXIFYqErQGcU7BJDkOn4 + 0daOC0ND5MTG58C3h/j2zadZPEHtELXRxyBeYD4xjJNu6DNdbC6lI47gS3ZcAD/j5OZfkNYVEjm0 + OgZj7Dq5cvkS83eOgl/b3tbG9MUQxERDgxxpTNQPun73rl0d1Oac2vKv5MjKMGl+aynzJ6+ATqI+ + w+Hmg1Ycc5h8sON95tN++uEOcqazg/SC/Xjhty9UUbvRue3fybFVYBffXsbG2RUoL/U9aJ2dhxjL + 9jlsv3MU6p6259q1a+fS/F3v/Rdpf+tpcmTd82ys0jqjtoLlB4z7b5bfMgr9gLbx+g3rWf7u935J + 2ps00rrm51b+Kyz/ELQT7V+WH8R8n16efwz6ydjmzZt4/u2/IsdXA/+1/xzXlSOg00ehzUYhRr5k + xa/Mr4B2uzp6iT3bunUry396+6/JibdipH3Lr+P8x7N9p6HuaGxKY5/du3fPZnZ3XxM5/f6vScdH + fxo3v2239u3bS0D/kIMHD75M9QTVK1SPU6TXE+l/auePQGwKevflTDoHaJbZtFJxeHiY6a/W1taX + 7yY9Jd7/ifd/4v2fgLvn/d/iu2z/pwKx/5PQ/6L9hf4XkC39z5Z/LjbuzPifcP1nfur6j9xAQKz/ + zArQ87+9WTz/G5jd5iPAra2iH9Oh+6JGLaajH0j1Ej+/FIiH6Q7RYpwL+y/Gv7D/AlIh4A/MqPEF + 8nODQX9+uDB/xvT8wmA4WJA3Q/IVSuHAU4mtTO6U/Ydgz5+6/2OBX9j/rMD9VelHEYSgTrSI/AyO + H+hAbTG4CLqK6rQGdsyBnYRb3DAOxmoT5z8wg01T8l1qEN+mBsUMelYENfGJTsWtvKyEOSE5Qrds + ZC5CjWSY2CJdC84BM/QPVy5agCIhPcUR4Zs+Wv5IUcDjQ2VVKAguzZTJjy2q/OGc8krklaLRKZPn + /qhiUdVcNN0Xv8zPz7sxYSO8JE6VCusga+ihKZNnL6p4HD3hGmczLdc05PK4npwyufKRhYhTRDok + BbcJHnjHy2WR9SBPgp2L8vN6XEm0eP2Nyx25Q6gScw/PrbGK8FqlsMrNCUDhrC0Yk6hb926Nvp3J + Gy2i50tEo3TrxxK26WKCK80ATGtkVVJSG4oV3e2u0bVISZyYkzJUytyF1ZWPVywqX1gNdc+lpVWd + JmdYUVxPClUvQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQICAbxj8Pxi5uEAA + GAEA + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '7470' + Content-Type: + - application/octet-stream + User-Agent: + - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Sat, 08 Jul 2023 07:14:27 GMT + x-ms-version: + - '2022-11-02' + method: PUT + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/source/202307080000/dab98162-003c-4d09-8744-bbd6032671de.tar.gz?sv=2021-12-02&se=2023-07-08T08%3A14%3A26Z&sr=b&sp=cw&sig=f58JNUY4HPVE8odw7htPBebycBEEGTU3zD0filJbOJE%3D + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - yyPXuhA3C0pV7yOit8NoAw== + date: + - Sat, 08 Jul 2023 07:14:26 GMT + etag: + - '"0x8DB7F82F751C4D4"' + last-modified: + - Sat, 08 Jul 2023 07:14:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - /wgjMrkPS98= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2022-11-02' + status: + code: 201 + message: Created +- request: + body: '{"type": "DockerBuildRequest", "isArchiveEnabled": false, "imageNames": + ["runtime7.0:20230708001425580041"], "isPushEnabled": true, "noCache": false, + "dockerFilePath": "6169f0642bb14d749847bdb539a07ad6_Dockerfile", "arguments": + [], "platform": {"os": "Linux", "architecture": "amd64"}, "sourceLocation": + "source/202307080000/dab98162-003c-4d09-8744-bbd6032671de.tar.gz"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '370' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-08T07:14:28+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:27.5900093+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview + response: + body: + string: '{"logLink":"https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D"}' + headers: + cache-control: + - no-cache + content-length: + - '229' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:30 GMT + etag: + - '"0x8DB7F82F8E4F76D"' + last-modified: + - Sat, 08 Jul 2023 07:14:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:30 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:30 GMT + etag: + - '"0x8DB7F82F8E4F76D"' + last-modified: + - Sat, 08 Jul 2023 07:14:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:30 GMT + x-ms-range: + - bytes=0-4095 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "2023/07/08 07:14:29 Downloading source code...\r\n2023/07/08 07:14:30 + Finished downloading source code\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-range: + - bytes 0-101/102 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:30 GMT + etag: + - '"0x8DB7F82F8E4F76D"' + last-modified: + - Sat, 08 Jul 2023 07:14:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:30 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:30 GMT + etag: + - '"0x8DB7F82F8E4F76D"' + last-modified: + - Sat, 08 Jul 2023 07:14:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:33 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:33 GMT + etag: + - '"0x8DB7F82FA2B71C0"' + last-modified: + - Sat, 08 Jul 2023 07:14:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:33 GMT + x-ms-range: + - bytes=102-4197 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "2023/07/08 07:14:30 Using acb_vol_b02b3d71-00a0-471e-bc5e-e6fb3c5451d2 + as the home volume\n2023/07/08 07:14:30 Setting up Docker configuration...\n2023/07/08 + 07:14:31 Successfully set up Docker configuration\n2023/07/08 07:14:31 Logging + in to registry: containerapp000004.azurecr.io\n2023/07/08 07:14:31 Successfully + logged into containerapp000004.azurecr.io\n2023/07/08 07:14:31 Executing step + ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2023/07/08 + 07:14:31 Scanning for dependencies...\n2023/07/08 07:14:32 Successfully scanned + dependencies\n2023/07/08 07:14:32 Launching container with name: build\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '618' + content-range: + - bytes 102-731/732 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:33 GMT + etag: + - '"0x8DB7F82FA2B71C0"' + last-modified: + - Sat, 08 Jul 2023 07:14:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:33 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:33 GMT + etag: + - '"0x8DB7F82FA2B71C0"' + last-modified: + - Sat, 08 Jul 2023 07:14:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:36 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1428' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:36 GMT + etag: + - '"0x8DB7F82FBBBE84F"' + last-modified: + - Sat, 08 Jul 2023 07:14:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '4' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:36 GMT + x-ms-range: + - bytes=732-4827 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "Sending build context to Docker daemon 35.33kB\r\r\nStep 1/17 : FROM + mcr.microsoft.com/dotnet/aspnet:6.0 AS base\n6.0: Pulling from dotnet/aspnet\n9d21b12d5fab: + Pulling fs layer\neca6fd7d457a: Pulling fs layer\na989f10a2de0: Pulling fs + layer\ncf9782c65917: Pulling fs layer\n7c26c11d86af: Pulling fs layer\ncf9782c65917: + Waiting\n7c26c11d86af: Waiting\neca6fd7d457a: Verifying Checksum\neca6fd7d457a: + Download complete\ncf9782c65917: Verifying Checksum\ncf9782c65917: Download + complete\n9d21b12d5fab: Verifying Checksum\n9d21b12d5fab: Download complete\na989f10a2de0: + Verifying Checksum\na989f10a2de0: Download complete\n7c26c11d86af: Verifying + Checksum\n7c26c11d86af: Download complete\n9d21b12d5fab: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '696' + content-range: + - bytes 732-1427/1428 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:36 GMT + etag: + - '"0x8DB7F82FBBBE84F"' + last-modified: + - Sat, 08 Jul 2023 07:14:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '4' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:36 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1428' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:36 GMT + etag: + - '"0x8DB7F82FBBBE84F"' + last-modified: + - Sat, 08 Jul 2023 07:14:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '4' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:38 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1541' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:38 GMT + etag: + - '"0x8DB7F82FD09FB2B"' + last-modified: + - Sat, 08 Jul 2023 07:14:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:38 GMT + x-ms-range: + - bytes=1428-5523 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "eca6fd7d457a: Pull complete\na989f10a2de0: Pull complete\ncf9782c65917: + Pull complete\n7c26c11d86af: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '113' + content-range: + - bytes 1428-1540/1541 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:38 GMT + etag: + - '"0x8DB7F82FD09FB2B"' + last-modified: + - Sat, 08 Jul 2023 07:14:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:38 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1541' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:38 GMT + etag: + - '"0x8DB7F82FD09FB2B"' + last-modified: + - Sat, 08 Jul 2023 07:14:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:41 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2123' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:41 GMT + etag: + - '"0x8DB7F82FECA9A65"' + last-modified: + - Sat, 08 Jul 2023 07:14:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:41 GMT + x-ms-range: + - bytes=1541-5636 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "Digest: sha256:f383408c6be95a4a13edaecd3f5ff1aa8c9aebf29820d69b603367aa392dbbdd\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> 944b6c5ff1d6\nStep + 2/17 : WORKDIR /app\n ---> Running in d2741631acd3\nRemoving intermediate + container d2741631acd3\n ---> 8fbd9530fd35\nStep 3/17 : EXPOSE 80\n ---> Running + in 81120692a146\nRemoving intermediate container 81120692a146\n ---> abbdfd97517e\nStep + 4/17 : EXPOSE 443\n ---> Running in 8574354cb8a5\nRemoving intermediate container + 8574354cb8a5\n ---> 868cee20a182\nStep 5/17 : FROM mcr.microsoft.com/dotnet/sdk:6.0 + AS build\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '582' + content-range: + - bytes 1541-2122/2123 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:41 GMT + etag: + - '"0x8DB7F82FECA9A65"' + last-modified: + - Sat, 08 Jul 2023 07:14:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:41 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2123' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:41 GMT + etag: + - '"0x8DB7F82FECA9A65"' + last-modified: + - Sat, 08 Jul 2023 07:14:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:44 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2614' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:44 GMT + etag: + - '"0x8DB7F830037F8FD"' + last-modified: + - Sat, 08 Jul 2023 07:14:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:44 GMT + x-ms-range: + - bytes=2123-6218 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "6.0: Pulling from dotnet/sdk\n9d21b12d5fab: Already exists\neca6fd7d457a: + Already exists\na989f10a2de0: Already exists\ncf9782c65917: Already exists\n7c26c11d86af: + Already exists\n9982b59f30ae: Pulling fs layer\n5cfb30e275b9: Pulling fs layer\n40837876a537: + Pulling fs layer\n9982b59f30ae: Verifying Checksum\n9982b59f30ae: Download + complete\n40837876a537: Verifying Checksum\n40837876a537: Download complete\n5cfb30e275b9: + Verifying Checksum\n5cfb30e275b9: Download complete\n9982b59f30ae: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '491' + content-range: + - bytes 2123-2613/2614 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:44 GMT + etag: + - '"0x8DB7F830037F8FD"' + last-modified: + - Sat, 08 Jul 2023 07:14:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:44 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2614' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:44 GMT + etag: + - '"0x8DB7F830037F8FD"' + last-modified: + - Sat, 08 Jul 2023 07:14:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:47 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2614' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:47 GMT + etag: + - '"0x8DB7F830037F8FD"' + last-modified: + - Sat, 08 Jul 2023 07:14:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:49 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3086' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:49 GMT + etag: + - '"0x8DB7F8304C1DCC6"' + last-modified: + - Sat, 08 Jul 2023 07:14:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:50 GMT + x-ms-range: + - bytes=2614-6709 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "5cfb30e275b9: Pull complete\r\n40837876a537: Pull complete\nDigest: + sha256:017deb67e5f21988120b322735d0c24beba3daf02e02b31dea4aea243a37a3e8\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> add3a601df3c\nStep + 6/17 : WORKDIR /src\n ---> Running in 9815eba7cc58\nRemoving intermediate + container 9815eba7cc58\n ---> 761d6affb0cf\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", + \".\"]\n ---> d02360f07875\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '472' + content-range: + - bytes 2614-3085/3086 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:49 GMT + etag: + - '"0x8DB7F8304C1DCC6"' + last-modified: + - Sat, 08 Jul 2023 07:14:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:50 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3086' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:50 GMT + etag: + - '"0x8DB7F8304C1DCC6"' + last-modified: + - Sat, 08 Jul 2023 07:14:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:52 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3086' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:52 GMT + etag: + - '"0x8DB7F8304C1DCC6"' + last-modified: + - Sat, 08 Jul 2023 07:14:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:55 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3547' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:57 GMT + etag: + - '"0x8DB7F8308F95FDC"' + last-modified: + - Sat, 08 Jul 2023 07:14:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:57 GMT + x-ms-range: + - bytes=3086-7181 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: " ---> Running in ad22f19012b0\n Determining projects to restore...\n + \ Restored /src/TestWebApp202305.csproj (in 482 ms).\nRemoving intermediate + container ad22f19012b0\n ---> 6f1dcc2d2527\nStep 9/17 : COPY . .\r\n ---> + 109f274f65ca\nStep 10/17 : WORKDIR \"/src/.\"\n ---> Running in 468427b4780c\nRemoving + intermediate container 468427b4780c\n ---> e4ad228fd0ef\nStep 11/17 : RUN + dotnet build \"TestWebApp202305.csproj\" -c Release -o /app/build\n ---> Running + in 637cc09cd9dd\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '461' + content-range: + - bytes 3086-3546/3547 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:57 GMT + etag: + - '"0x8DB7F8308F95FDC"' + last-modified: + - Sat, 08 Jul 2023 07:14:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:57 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3547' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:57 GMT + etag: + - '"0x8DB7F8308F95FDC"' + last-modified: + - Sat, 08 Jul 2023 07:14:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:00 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3547' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:00 GMT + etag: + - '"0x8DB7F8308F95FDC"' + last-modified: + - Sat, 08 Jul 2023 07:14:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:03 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4133' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:03 GMT + etag: + - '"0x8DB7F830C8282A7"' + last-modified: + - Sat, 08 Jul 2023 07:15:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:03 GMT + x-ms-range: + - bytes=3547-7642 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "MSBuild version 17.3.2+561848881 for .NET\n Determining projects to + restore...\n All projects are up-to-date for restore.\n TestWebApp202305 + -> /app/build/TestWebApp202305.dll\r\n\nBuild succeeded.\n 0 Warning(s)\n + \ 0 Error(s)\n\nTime Elapsed 00:00:05.24\nRemoving intermediate container + 637cc09cd9dd\n ---> 685f427186c6\nStep 12/17 : FROM build AS publish\n ---> + 685f427186c6\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" + -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in b6689b8c4634\nMSBuild + version 17.3.2+561848881 for .NET\n Determining projects to restore...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '586' + content-range: + - bytes 3547-4132/4133 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:03 GMT + etag: + - '"0x8DB7F830C8282A7"' + last-modified: + - Sat, 08 Jul 2023 07:15:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:03 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4133' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:03 GMT + etag: + - '"0x8DB7F830C8282A7"' + last-modified: + - Sat, 08 Jul 2023 07:15:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:06 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4451' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:06 GMT + etag: + - '"0x8DB7F830DB81F52"' + last-modified: + - Sat, 08 Jul 2023 07:15:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:06 GMT + x-ms-range: + - bytes=4133-8228 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: " All projects are up-to-date for restore.\n TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\n + \ TestWebApp202305 -> /app/publish/\nRemoving intermediate container b6689b8c4634\n + ---> fc8473c7f684\nStep 14/17 : FROM base AS final\n ---> 868cee20a182\nStep + 15/17 : WORKDIR /app\n ---> Running in 4d463eca0244\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '318' + content-range: + - bytes 4133-4450/4451 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:06 GMT + etag: + - '"0x8DB7F830DB81F52"' + last-modified: + - Sat, 08 Jul 2023 07:15:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:06 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4451' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:06 GMT + etag: + - '"0x8DB7F830DB81F52"' + last-modified: + - Sat, 08 Jul 2023 07:15:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:09 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4736' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:09 GMT + etag: + - '"0x8DB7F830F7B04EE"' + last-modified: + - Sat, 08 Jul 2023 07:15:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:09 GMT + x-ms-range: + - bytes=4451-8546 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "Removing intermediate container 4d463eca0244\n ---> 578db12fee5d\nStep + 16/17 : COPY --from=publish /app/publish .\n ---> 63c054899816\nStep 17/17 + : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\n ---> Running in bb69905898c2\nRemoving + intermediate container bb69905898c2\n ---> 1e3c94fec2cd\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '285' + content-range: + - bytes 4451-4735/4736 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:09 GMT + etag: + - '"0x8DB7F830F7B04EE"' + last-modified: + - Sat, 08 Jul 2023 07:15:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:09 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4736' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:09 GMT + etag: + - '"0x8DB7F830F7B04EE"' + last-modified: + - Sat, 08 Jul 2023 07:15:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:12 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5442' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:12 GMT + etag: + - '"0x8DB7F8310CBD31C"' + last-modified: + - Sat, 08 Jul 2023 07:15:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:12 GMT + x-ms-range: + - bytes=4736-8831 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "Successfully built 1e3c94fec2cd\nSuccessfully tagged containerapp000004.azurecr.io/runtime7.0:20230708001425580041\n2023/07/08 + 07:15:08 Successfully executed container: build\n2023/07/08 07:15:08 Executing + step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2023/07/08 + 07:15:08 Pushing image: containerapp000004.azurecr.io/runtime7.0:20230708001425580041, + attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/runtime7.0]\n4a7418e98294: + Preparing\nddd372b34d3d: Preparing\n0952b6289d62: Preparing\nd6610a4343a7: + Preparing\na3262e06e330: Preparing\ncedd91c685c9: Preparing\n4b3ba104e9a8: + Preparing\ncedd91c685c9: Waiting\n4b3ba104e9a8: Waiting\n4a7418e98294: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '688' + content-range: + - bytes 4736-5441/5442 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:12 GMT + etag: + - '"0x8DB7F8310CBD31C"' + last-modified: + - Sat, 08 Jul 2023 07:15:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:12 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5442' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:12 GMT + etag: + - '"0x8DB7F8310CBD31C"' + last-modified: + - Sat, 08 Jul 2023 07:15:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:15 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5527' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:15 GMT + etag: + - '"0x8DB7F8312D1B7CB"' + last-modified: + - Sat, 08 Jul 2023 07:15:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:15 GMT + x-ms-range: + - bytes=5442-9537 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "d6610a4343a7: Pushed\nddd372b34d3d: Pushed\n0952b6289d62: Pushed\ncedd91c685c9: + Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '85' + content-range: + - bytes 5442-5526/5527 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:15 GMT + etag: + - '"0x8DB7F8312D1B7CB"' + last-modified: + - Sat, 08 Jul 2023 07:15:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:15 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5527' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:15 GMT + etag: + - '"0x8DB7F8312D1B7CB"' + last-modified: + - Sat, 08 Jul 2023 07:15:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5570' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:18 GMT + etag: + - '"0x8DB7F8314B34D77"' + last-modified: + - Sat, 08 Jul 2023 07:15:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:18 GMT + x-ms-range: + - bytes=5527-9622 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "a3262e06e330: Pushed\n4b3ba104e9a8: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '43' + content-range: + - bytes 5527-5569/5570 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:18 GMT + etag: + - '"0x8DB7F8314B34D77"' + last-modified: + - Sat, 08 Jul 2023 07:15:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5570' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:18 GMT + etag: + - '"0x8DB7F8314B34D77"' + last-modified: + - Sat, 08 Jul 2023 07:15:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:21 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '6810' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:20 GMT + etag: + - '"0x8DB7F831665A3E2"' + last-modified: + - Sat, 08 Jul 2023 07:15:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:21 GMT + x-ms-range: + - bytes=5570-9665 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: "20230708001425580041: digest: sha256:2c84ec3f0a7800dff875bdaea2a64eea98541d617041d7cc99e9de4c29008837 + size: 1786\n2023/07/08 07:15:17 Successfully pushed image: containerapp000004.azurecr.io/runtime7.0:20230708001425580041\n2023/07/08 + 07:15:17 Step ID: build marked as successful (elapsed time in seconds: 36.402682)\n2023/07/08 + 07:15:17 Populating digests for step ID: build...\n2023/07/08 07:15:19 Successfully + populated digests for step ID: build\n2023/07/08 07:15:19 Step ID: push marked + as successful (elapsed time in seconds: 9.490399)\n2023/07/08 07:15:19 The + following dependencies were found:\n2023/07/08 07:15:19 \n- image:\n registry: + containerapp000004.azurecr.io\n repository: runtime7.0\n tag: \"20230708001425580041\"\n + \ digest: sha256:2c84ec3f0a7800dff875bdaea2a64eea98541d617041d7cc99e9de4c29008837\n + \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: dotnet/aspnet\n + \ tag: \"6.0\"\n digest: sha256:f383408c6be95a4a13edaecd3f5ff1aa8c9aebf29820d69b603367aa392dbbdd\n + \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: + dotnet/sdk\n tag: \"6.0\"\n digest: sha256:017deb67e5f21988120b322735d0c24beba3daf02e02b31dea4aea243a37a3e8\n + \ git: {}\n\r\nRun ID: ca1 was successful after 51s\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1228' + content-range: + - bytes 5570-6809/6810 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:20 GMT + etag: + - '"0x8DB7F831665A3E2"' + last-modified: + - Sat, 08 Jul 2023 07:15:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:21 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '6810' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:21 GMT + etag: + - '"0x8DB7F831665A3E2"' + last-modified: + - Sat, 08 Jul 2023 07:15:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:29 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", + "value": "D7fYCIg+KkHystIf/t6bRg8pXnvg5i9uVEt6x8OqHj+ACRAxyVUI"}], "activeRevisionsMode": + "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", + "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], + "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "containerapp000004.azurecr.io/runtime7.0:20230708001425580041", "name": "containerapp000003", + "command": null, "args": null, "env": null, "resources": null, "volumeMounts": + null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": + null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1033' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:24.671135Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:24.671135Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.71.0.153"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230708001425580041","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '2054' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '699' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","name":"ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","status":"InProgress","startTime":"2023-07-08T07:15:25.4196227"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","name":"ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","status":"InProgress","startTime":"2023-07-08T07:15:25.4196227"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","name":"ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","status":"Succeeded","startTime":"2023-07-08T07:15:25.4196227"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:24.671135","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:24.671135"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.71.0.153"],"latestRevisionName":"containerapp000003--056vhr7","latestReadyRevisionName":"containerapp000003--056vhr7","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230708001425580041","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2105' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:24.671135","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:24.671135"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.71.0.153"],"latestRevisionName":"containerapp000003--056vhr7","latestReadyRevisionName":"containerapp000003--056vhr7","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230708001425580041","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2105' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml new file mode 100644 index 00000000000..bc56bf10104 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml @@ -0,0 +1,6359 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.9240428Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-08T16:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.9240428Z","modifiedDate":"2023-07-08T07:13:10.9240428Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi","name":"workspace-clitestrgrpih42vas4rxn6y2mg7zi","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi?api-version=2021-12-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.9240428Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-08T16:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.9240428Z","modifiedDate":"2023-07-08T07:13:10.9240428Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi","name":"workspace-clitestrgrpih42vas4rxn6y2mg7zi","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi/sharedKeys?api-version=2020-08-01 + response: + body: + string: '{"primarySharedKey":"wC913ZgvAmuSe4TgsPlpm+xIULFEIPSvk7h2HsVKFNiXcNFLNrpRWpBRutdwAE051BFglLMHzzFeFoftyC6N/A==","secondarySharedKey":"T+lOu1z0B4MH9ItNitWUTRwc2WTNm7K+T3aAY2kufThWqD/xU5lb2GGnkmssP+xRLZJVqyzr/UetTl200W1fdg=="}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + cache-control: + - no-cache + content-length: + - '223' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:13 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "4cd87289-8e27-4dba-82fa-50c10341bb55", + "sharedKey": "wC913ZgvAmuSe4TgsPlpm+xIULFEIPSvk7h2HsVKFNiXcNFLNrpRWpBRutdwAE051BFglLMHzzFeFoftyC6N/A=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '450' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13: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 env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13: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 env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"Succeeded","startTime":"2023-07-08T07:13:23.1169575"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14: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: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true, "anonymousPullEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0811852Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03e069f8-1d5f-11ee-b8f6-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1380' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03e069f8-1d5f-11ee-b8f6-bce92fa43675?api-version=2022-02-01-preview + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03e069f8-1d5f-11ee-b8f6-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0811852Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0811852Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview + response: + body: + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"RjdfeoTxKBxsazLuQQJe5MDKQpv6osRoh/21ynTNrd+ACRCRJDUn"},{"name":"password2","value":"XK/gvdhYnoz0hkGGzAzJYBDgqt+kt2byEpj6HF5x8g+ACRAQJqcG"}]}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '214' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 08 Jul 2023 07:14:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '234' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2g77p3nurkfjlsjzrkvxkrnxzjie3ecuq5z27v67wn7kn2bp7yzzyx7opqwakn6t/providers/Microsoft.ContainerRegistry/registries/containerappsnfatmtjjrri","name":"containerappsnfatmtjjrri","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T06:22:59.1080657Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T06:22:59.1080657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdksh6adyzsdtsskn73xjpztc7ysyosa4zupycqyveoabwax62cwrjjnvtscg76ndb/providers/Microsoft.ContainerRegistry/registries/containerapptcr7ww3ydgnx","name":"containerapptcr7ww3ydgnx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:37:34.4109563Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:37:34.4109563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cmn735q7w2nwwebppb5clx7mirv4xiylykhjye674ol2n3ijchndft46d3fsuw2r/providers/Microsoft.ContainerRegistry/registries/containerappimdj6e7r2gye","name":"containerappimdj6e7r2gye","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:53:07.4694556Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:53:07.4694556Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv4b4fipvuwf57kz3fxssmj7tpfpzncvupsohhfjr55gmfxvww3272nz4kbqvczmbn/providers/Microsoft.ContainerRegistry/registries/containerappq73aloxzz2f4","name":"containerappq73aloxzz2f4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:24.1395549Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:24.1395549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeligh3rsqvhhs3g3u4omisskxfsz7mofruquyma4xt26fgbbxxfst7j6ozmafmfjp/providers/Microsoft.ContainerRegistry/registries/containerappe26fbem5qobi","name":"containerappe26fbem5qobi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:11:09.2869299Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:11:09.2869299Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn5isfsnaihp2s342ghm2p3kpf45eg4fau5rqhhonew7c6mqfrzgn6ojvsjpodwpby/providers/Microsoft.ContainerRegistry/registries/containerapppsi7catvaru2","name":"containerapppsi7catvaru2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpqo2bynzrtzy7hehcnoopzcgigliypgumob5rrw74vfmrqxf3v7ucpmdqwfz4rd5j/providers/Microsoft.ContainerRegistry/registries/containerappr3s6fbx6lppt","name":"containerappr3s6fbx6lppt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '8430' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0811852Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - '2022-12-01' + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 08 Jul 2023 07:14:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview + response: + body: + string: '{"uploadUrl":"https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/source/202307080000/c6f21d4f-7873-47ce-a6fe-d4e46791327b.tar.gz?sv=2021-12-02&se=2023-07-08T08%3A14%3A26Z&sr=b&sp=cw&sig=eSd8VBg%2BQI3fjHxg80vWPGCbDEgaBXCC544q06XjP9w%3D","relativePath":"source/202307080000/c6f21d4f-7873-47ce-a6fe-d4e46791327b.tar.gz"}' + headers: + cache-control: + - no-cache + content-length: + - '354' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: !!binary | + H4sICNAMqWQC/2J1aWxkX2FyY2hpdmVfMzMyZGI1NzhlZTJlNDY5YzkxOTkzODgwNzNiNWI0NzIu + dGFyAO09+XcUx5lkN/sL+3jPf0Jl/DYRfkzPjE4sJBkZcFDCoZVkO17HcXpmSlJDT/e4u0dC9nOc + t1nvvj1estk4ednndZzExgZjsA3mBmN8m/uQECCBQBLCoAuBBOKQa7+q6p7pOSTAgTEx9dkf0+qu + +r6vru+orq6SfJJvZqW8ZC6Ww9iYdFvAz2G8X78/Ly9xTe8HAvkFgUloyaQsQMy0ZAPY3+pC/pVA + bhGKWEoElwYKpxf67y+Yfn+uVFSUP72wYPIkAd988GWBBx0PRUVF44//tOui3CL/JFQgxv9tB0no + f6H/hf6/a0GORk1sWYpWZ0qzcQNW9WgEa5a0yNS1Wzn+CwsLxx3/uXm5KeM/vyg3bxLyi/F/2+GZ + KZMR8szGlqyoODzHMHTD9BQjy4jhaezRPL2uDnoH3GNJ+Z15tKckbjEKtXJMteCep0Kr1Y2IbCm6 + 5pkWTzBfCRm6qddaUrkZXYCtWbqBaepHZUOj9HnCZ+kP/AP/i7Ep7L8Y/8L+C8iW/b+VNv+m7H9u + Ucr4z83PLxT2P3v2/+sw8ty9KFdVvRGH5+qmRf0Oz30eYfyF/Rf2X9h/AdmASrkOm7d5Evim538D + /twCMf8r9L9of6H/BWRB/7N5Pylk1lsRNevxX6CgMHX+N7egMCDiv2zA4OZtM6PQB6ZMnhnRw1hF + rCvMp5dwyw79HlFw42zZkh/31CiWij1PoFLkYQk9M1i4NmVySX0AhVTZNEs9Fl5iecOyVocNTxnv + WSW++kAZTZSbMVG5hjBNh/RQKGYYOIwa6xUVo6ihh7BpQuSImvSYgQz8VAybFiWXW0a5zlRqUQ4T + Vqqu1xur+POK8NQpk23RS6JlTnQKf5iWoWt1ZXY6VDG7uMRn30MlIaBTNpNTi1Mq8bHbNjEfpWaX + N6/M9b4E0WwgVh4tpcOyulGORqnwlo6sehxn78qXYI+1BgWuGLGwYkZVuclEYXteHimJcBvJQT1m + MYK80qx62YrXnAT8mZRxKRyuNZDBLbGboVmvx9Sw9j0LBYGqJgcpT+AIAkRVvQn+gJKoSogJYEpx + qTmHCguFZA1ax4ypFojqyE+LbmLNVCylAScVodbQIwgvCeEoI0grCGthFDOxYUqc6EPAXdVDsgoy + BGNsemKaLdrNVWawCdkzXEn5yqsrF8ypmbWwas6TcxY8UlG1cMH8OQtqMpNokA2FM9Yn5Msll6Ek + UBegVuJMofbiDSP8P+H/Cf9PwJ3q/8FPlv2/vPzU8Z8XAJdQ+H9ZKT61UZnm7aX5DSHw7iZOIFXJ + T+sG60TxtNVNpoUj0mxFrtN001JC9NGUyZocwWZUDmFUA8bxURwsj0Zz/bl5/gKJ5Y+7bI9XQTrw + CvAsOVSPc2bHDO40lCL/NDRPDzl/JSVz7ksLdA1PQwv0agtEhFR0JcPUJ2zKFSCRgcs1SwFfBFzP + php9Mdbsp9FYEFwc7qC63GBUjKh8tktMEz6T8CjtPGD/oeQPoLjbiJ5BddiaQT2PGYg5jCk5grqu + oiSfFZWWoe9wQlKFuSCmqguNOZGo1ZSTcGtnJFEylAbZwuBryGFdU5tQBX2Ng42ShOxl6EmV3ZuR + QYREspxMOXnGqYlsrmJTsClDFcdZOI8yFbhBV8JoofZ9bOWMT9NVGag8BG6jYjVJs6hjq1kPSHD7 + gQfQXMuKztI1GkBINQb0p4owpg2qpIpg/zwrlLzw/4T+F/6fgHH9vwotjJd8XfN//vxAIG3+L7dI + +H9fy/wf6wo3Mv83V49gRLMm5gDDSkPS/F4IDDOd37MnohJThPYEkTffU/YoVkNAyZ4htKfs5mHZ + cCa6SmRUb+DaUk89GH6z2OcL6yFTisQdUsjtk82ohi1fiC43KQvGFDVMHVHwMenMi4kaFaselVdX + Sgvm1CDqupb45DLJnifzgdRld+2KE2H/hf0X9l/Y/4T9z/r8j78wkD7/kyfsf7bs/y2dArqJeZ6k + +ZaE2zHxfMt4cx6J/BPOeSSS5WTKma05jztnnkLYf2H/hf2/2+1/JVWroabbNANw3e8/CvLT7L9f + vP/5euJ/uyvcyAyAnRRV6mDsmuxpAIjyy2amJbfDe7Ys5WGTruBQTDZ5QJdU8FUufImPqVj4eya3 + 80A6ykhLd+LKCRH/C/sv7L+Ab579v9UzANeN/3NT5//zCvz5wv7fTfG/2+34ajMAbgoTzgG4E+Zk + zp3ttQ9f3yyAsP/C/gv7f7fb/+p62cDh2/UZ6M1//wnjv1B8/yn0v2h/of8FZE3/PzlPbtJj1q2e + Br5O/Jef7y9M3f8vLyDmf7MV/5V8Z/bCWTWPVc5BtNXZZ5rwi1RZqyv1YM3D7oB5cJZnRbAloxD0 + GBNbpZ6YVeud7kG+pKc0Biz1NCi4MaoblgeF6HptDVI3KmGrvjSMG5QQ9rI/piFFUyxFVr1mSFZB + D0l+FzWLTh9nmE9G3rTossTHE9s5VUVbDEGiWuoxrSYVm/UYgyB8JdnPfKoS9AV13TItQ476wopp + +UKmmbglRRQNhoHpEmVigjQ3nbvmmWQz6pWjUayFvQ3YMBVdK/XQDxFumFxa6MwT3Qj1Ep/dWCVB + PdwUX3vH7Lv7W1hNji/Wg8ugbCD+48VLojKQNiPODQtiXBXTDyBdN1Wlrt5CwTpvYz0UGwV1A+h7 + g7pl6RH4a4nXrIcAvRFFgt48T1ly+OxeKEi7hqxoiWWCSQnlZBG9QQNEs2vAwHKph1/TNwmlHr6M + xVOW3jPkTLSDMZBVS2HAy2p4kNUUBZI8jQeFofN5g6b9mEqtqnLUxK4nslFHx4NkE0qkoB+Pemkx + DV2NM6qORenQwOFZfGh40gV0gOXnjYLDpZ5aWY1TVeUg7UE1TCraMkod35KrLDO5EhOoZC6xVwnR + fCU+miRTdfl4XWR65GrOlNKj+AXtUF5Fg26PvbUqXoIWgeZVapu8tm7wBrHViPH4osfUFB60A1NK + 3jpDb/QGxstojzZXZi902MhEydO6npeNVvubdWPx9TrgXLagVZ5IINBAd4C89qyXp8y++MpCl/hi + asZOwxfXTnSvxAcCxz+wT9JT19UTJRG4hWBcQWHopcdJHc2gdWZWgcbExoOgFd3TcCU+mjMuABfO + /qsW7AE2HKK2jrP0KLIfsBqOxGAYJ0l1I+rtuyE92jQDUQ2VwZjBLWjQr9Rq7vot8XFBEyUyQ4YS + tZBphBwzuOipGDaauA3k18z4LTKZMmDJy8bNnGJDF7lNaDCmhVV8g8QW2eZz0UT2zU2DU5kpN8qK + hXjLVuMQVX7lZpMWyvFUs5SmZxrbNkIB/7YYMd05ldpI2zZCh6M+z93r/4v4X8T/Iv4X8X+G+J8G + G9mI/wOFeanrvwoCfrH/U7bif999qBLCO/DRTQx+uh6K0U1t7L2GLHRjn135QqpCvXhTCWMfs/yK + VuelcSTYf6XW3jpoymS+qRBd72UiGnzpWq1SFzP4Rjl0TZihLwIzTpeFcf+BbafDaDQhk0oVQo30 + uy7TxJYpoft81BWQJXd8yN+ssrjUy95EFyONbj2kste0zGeTIXzVihH/QI3dbgTnDrJjeXExYj+Q + RnW+bJM5SQhmdKMY3UtfZ4RCzkMpaGneqKFEZKMpOV1tbS2jHZRDiyFIgfJ4nUeBYCEO5fKn3K2M + P5leGJATxKk3H1VUqC7JcewlmX4aj6ch90OzHoLtskSiWy+Jy/19xpUa/i5GgegSZOqqEkb34gL6 + H88lJU8LuLPxW+PmZHnjkwh2RufvYuRHUm6BgSNIKmI/Rl1QzvFPQ/x/yV8w1SHDo1aoMrrZlJev + J+T0anXWX5+G7hEAGqwGWHhaj+ncRjFStHpsKFZcINvpZ5mjOt3WSoc+JAdBfAgB7BrkpfLzPkUn + uIC63/8PMzJ0yUbwktO5FvqjS2ZkbRNs4f8J/0/4f8L/4/7fI2AXw8xS29FzJd3ETlb/sjdC113/ + X5jy/j+XZhD+X7be/4w3J+RtiHeHpOkh+3bGqZ0bIeaNaXrQMmImODFpNF3PMtEXI1bYfzH+hf0X + cCvt/5P0BXtFhL6RNG/9R4DXs/+BwoLU9R+BQIGw/1my/zP5+v7UV1BTJs+8/lL+mXI4XCPXzcVq + FCLj+6aN/5VAPJUpjLiw/8L+C/sv4M6y/9V0x/rbsQXA9ey/P33/5wJ6/pOw/9mx//aHaPzlH/2w + 334P6JkhzmIU9l/Yf2H/BXxj7b+h1xly5NZv+nfj9j/gL0qN/yH8F99/ZAUaZAOxDXPZ1+w8xHcO + epJmGVi28IP8cY5s1Jn8BAKfD5WHw8jEBv2Ow3TOt4qvdZXoa3eWSaq200iQIbFRQA6nQ5nL0Sgw + dpIzXjlxLrPs5SH8yKe5NTWVzhlgKKpEMX1vDrzoIWDfoUcszUmc2SRVmK4TmnKmJk4EowkfNvEc + 5/SpuTJdZmLkePgpKJ6p9sf8wJ4emRXmZ16judU11ahBVmMYKSbK86Ow3GRK6DE9hiJyE2qUNbZo + JVRPzzTja1noWpeooYdjbFkqMkNYkw1FN6exhTbOuhp5sSxFTHstDV1K4603LecULFvYuXAnJ76k + wblJCVThsGLwda8sgf2smq2UeUhR43VtP6gCv07R6pJvlseset1QnpbjZPij+XI0rc3o/aoYTyXU + p/D/hP8n/D8Bf83+XxQblnI7DwH/Cvs/5OUXiP0fhP4X7S/0v4As6X9Vjmmh+mp+Vq4pLTJ1LTvx + f2Fu6vgvyM0T7/+zAiwo9kCUWktjRU+xsyudJ/WNf+IRPAzpkQiEzQvkCIb7nkr+0YZnWjwB70sP + GnqjiQ1IQj/fTDx1na38iH20summD0kyH89MmbnC+vhH888maId1C+JoiFDnY9OkcWsad9dR1g8b + KiXphOLsvOl63bSKi0AVzqC3k+4WgGGyeTocPRUV1WjOkqgB3CaqIkjmpPr6ailF9Nl6aDHjO67U + dooblZg/tSv1mepQPY7gZ6EGn7FngeZCJT5b7PxVqRvWsy7abLNEs75cVemT9HaLmbi6ep59O75h + olMej6KYju5ydeNGRQuDsHSGg54SyZvdY38J7FSErOlaU0SPpSdzSUAZZGrozN0pqd/k++/PK3SV + 1DRZESFtfn5egd9dlmzvACn8P+H/Cf/v7oW0hX0hk36CecvH/4Tvf/L8aec/BMT5T1mBEtt3Q9Xh + xaWexOpNcCskuCVB3/DYu22U2LFC0/cNPRZ1tvGoYfsePWSAx9CoG4vLwPkqlPwlvtT7dnJ6rjX1 + ZMqwRn9KfPEbdoKKCDWnivUwXZRqxpOl3LYTP2yyXT8MbJkV4bKC/MJwoCCc6w1On36/Nz8UzPVO + l3Pv9xYE/SEsF+HcQvn+El9yHpsQd3Rm83c9XPSF1WXzFC22pMSX+WFSTuo924dS04Ml02+yCvSl + 1iC7W2HhSFKVVsqhxeC5VuFabGAthFGFFlJjYexun0cUMyar1VYsrOhS+dMxA0uznNdvplSj6yr8 + y0Q1PegRZxeVgBQoknKdXcigVl2s6WYodmcQ39ncNSD8P+H/Cf/v7oXGxkZD1y3f7eRx8+9//EX5 + AfH+R+h/0f5C/wvIhv6n+xffOfo/UJAn9L/Q/6L9hf4XkDX97+xffzvG/0Tf/+X5c1Pnf3PF+b/Z + AXbUQ9p2ePnOFnT0WGAcVmSUE1E0r72fXVHh9OiSqTxXIn8yhUJGgb/QpGQS6RI75xlYlelGhiwh + pe9sgWdvmMf379PD9n59Edmog0TOFnvOPnliDAv7L8a/sP8C/hL7Xys30ANAJPjntoz/8e1/IDe/ + MPX8pzx/UZ6w/9mBb036m0kI0V80adk9kyZ9F+7dcw//u/7bkybtgescuAdJJs2cxO9T+Pk9Gcn9 + HeDf3yzm5ORMfWvVys1vrVy5cdXKNzm++cbGVSuWb1z5xrKNK5e/vnHlstc3vrX89fWrKC57DXCp + C19b/y8/f+4/244eIUcOtZDDDJs5tjh4kGPzQdLK8EAct27aSE51dTLs7jxJuk+eIF0njpOu48dI + 57E2wKOks+0I6Tx6mJw82kpOHjkE2JKEbyx9ZVtPdxcZG71IrjEcIdcuURwmVy8CjlwAPM/wyvAQ + 4DmOFwbJ0eb95MtrV8nY1Stk7MplMnZ5lNO4ZOcbhjwXIO35QcABcnmoPw03r13D+F+7fIkMde4m + PTv+SHp2/omc2vEHcurzP5Dj+zaT9iOHk+vHrpv3tmxi/L+k/K8C/ysO/xGQ3ZabypwkQ0KOK3C9 + eV2Cf8/OP5M9v59F9r74fbL7f8sBHyR73/0PVjdjTt2MJuqmrbWF83fVwUDvGTJw9gsycOY06f+i + h/Sf7ib9Pd2k71QXOXW8PS4H/x0E/u8C/26ou8vk9K6lZN+LPyD7X64kB1/9EcP9m15gsnF0t9Ew + aT9M+V9L4j/Ye5aMDJ1jMgyf6wcZTiVk6OnideHCzevXbus51c3ynt69FMpeQZpf+zHZ/4cFZN9L + PyT71v3Sxd+RgdcD4z92zW4DLsNgXy8ZOc/5j5wbIP1nemwZuBy0Pdy4ZcM6zh/a74s9r5P9L80j + La//hPP/v3mMP60bjqNkeLAP6vIk6e0+QfZ89pHNP1EHFy+cBxnOJtrB3RaAvD8ncMuG9dt6ek6R + sWtXyBd7lzG+Lct+ytpg30vzyb71v+J928bhwX7g30l6QYa9n38M/McSdZA6Fmh92f3RGVPXLroQ + /t66cYPN/yrwXw7ln08Oufmv+xXv21dt/tCmfT2drA72fP4JuXTxoo0j5NLIMLk0fIFcpAj1cPHC + ELl4foi1x8jQYEZc887bnP/YVXJm/wpy8E8Pk9YVteTgnx8hB/5YTfZv+B9WNwyhbMMwbvpOdzIZ + 9gL/c+cGyblBigMcB/rJuf5+MtjfxxH6A8ezrG8OuJD+/e7qd7ad7ulh9Xhm/5vkwMv/SFqXh8hB + 4H0A6mD/hv9mdcOR8h9I4n/kMOiGw63kcKuDh2w9AdjSQlrj2JwRl77ySpz/2QOrSMsrj5EjKxeR + lqX/RJpf+RE5AOOP1g1DkGEY6qzvdBeTYe+OT8gpGLt7du8mh20Z3P3RPS7GnL5h6ypaT10nT5KV + K1ZsO326h0BG0kv5//lRcuRNhbS8+hhphusDG1+w+xjvZ8PQnn0wjiju2fEp4+9gdxy7OHa5kN7v + 6krDVStXAv/T5MsvvyS9B98mh179MTm6KkJaX/sJyPA4ObD5dy7+Y9CXgD+M5z4Yz3t2fEZOnTqV + hqtXryb79+9PwtUr3yDNe3cxndnW2kzaQI//5je/eVGSpHsT/N8hh155nBxduZjJQdvi4Kbfsrqh + mODfw2RoPbgf6n4Xw50gy87POW7asD5+vfPzT8nOzz4luz/9kFzoP8Ntmm0b1q5d+2/U9lP+FPpb + 1pAjrwdJ+9sG/IbI4dd+Spo3/57JxjCJP5dhGMYWRd4mXfG+SXWEoyeorurt7gD+ZxN2FXD9+vVJ + /PuaV5PWV39C2lbp5PDSn8L1E1D+3yX4A45ccPPvYfKMuPpEkgxxOU4yOYYHepPs18aNG1PKv5Yc + XYbJ8dWN5Pi7Tez38EfLSAK+BN1ynun0NP6sT0wsw/Bgb5IN3bxlczL/5nfJkddkcuwtg/0eXvok + ad70+yT+IxcukD7K/0wqf94efV90J+QAe+foSs6/L8mObt26NaX860jb8jpW7rY3FHIUrlu2/h9x + A9WtfWd7eB0A0vZItAkfF1D+MZBjjNWDzb+3m/G/CvwvA14F/lffe++99Pp/PUyOvxMD3rXsumXL + i2n8Hd6M/zDn33/2dBpyeUCWHs7/Qkr9v//+tiT+Ay3rSdsyp/yLWF1kKj+jfYbjCPQHihn5n6Uy + 0jZh9cF0t1P/o9D/tm/fnsz/EPBfrpCO1U2kfcVi1gYtW18itwrGQC9fBRs6OjpKzp8/Tz744IMM + 5ef8j72pgQygBz9YmrH8N4K0fXqhDc5APzwL/fE82I7L4MdcgD7c29tLPvzwQ8r/bxPl30Da31DJ + 8VUGk+HE2p+Rtp1rvxJ/ypvypNh14hg5AbHAGbAz/WCbu0Dv7927lxw9evQ5IPktd/23Q/mPrVBJ + O7RD+/JFafV/I/xpmR3eFD94fxuBvk62bdtGNm3axK7b2tq2Ud5u/hd721kb0HqgstDfjoMf3Tz/ + 05w//aX4/ntbme68dOkSOdnZSTo7O+O83fwzwUTPxoNr0M8cvHLlCvn444/JRfDRTpw4kcabItwj + AwMDGbGjo+Pm+znYKYqU98jICO1nlC+1zWm8r4f79u177mb507q+Cn4P5U37244dO6j/cdO8KTY3 + Nz83CP7lePWTCSnPs2fPkh7w606Cj9Xe3j4h7697LoPOU9xjz1U48xQzv52ervnA/l/s3b3r+b27 + dtq44/k9Oyl+/vy2rVs27tm189juHZ8f2/XZJ8d2fvLRsV0ff9i28+PtbTs/2t627u1V24cG+sjw + 6UNk6OQOMnByHzkLMeEZiEvPdEPf6DzBfFOqn6lvwGJ9iE+dWLmjtbljCOq2bU0M4hKIy1ZoSbFo + H8RZND+1RYM09qL2AegPwXikdDqOHOoYgniwfe0ScgBii33LI8BrlFwBXtQvOQNpqb88CjHMuf5e + RoPGa/QZ9dVOtB3pGAL92b7uGXIQ/PJ9b2gsHhqFGI76Nt0nO8gVSm/0ErkMsdBloDMKdokhyHTs + SGvH+aEhcnzDc+DbQ3z75lMsnqB2iNrooxAvMJ8Yxkk39JkuNpfSEUfwJTvOg59xYtMvSOsymRxc + FYMxdo1cvnSR+TtHwK9tb2tj+mIIYqKhQY40JuoHXb9r584OanNObv5Xcnh5mDS/tYT5k5dBJ1Gf + 4VDzATuOOUQ+2P4+82k//XA7Od3ZQXrBfrzw2xeqqd3o3Prv5OgKsItvP8PG2WUoL/U9aJ2dgxjL + 8Tkcv3MU6p6255o1a+bQ/F3v/Rdpf+spcnjt82ys0jqjtoLlB4z7b7bfMgr9gLbxuvXrWP7u935J + 2lfqpHX1z+38l1n+IWgn2r9sP4j5Pr08/xj0k7FNmzby/Nt+RY6tAv5r/jmuK0dAp49Cm41CjHzR + jl+ZXwHtdmX0Inu2ZcsWlv/Utl+T42/FSPvmX8f5j2f7TkHd0diUxj67du2axezu3pXk1Pu/Jh0f + /Wnc/I7d2rt3DwH9Qw4cOPAy1RNUr1A9TpFeT6T/qZ0/DLEp6N2XM+kcoFnu0ErF4eFhpr9aW1tf + vpP0lHj/J97/ifd/Au6c93+L7rD9nwrE/k9C/4v2F/pfQLb0P1v+uci8PeN/wvWf+anrP3ILC8X6 + z6wAPf/bl8Xzv4HZLT4C3N4q+lEDui9q0mMG+oHcIPPzS4F4mO4QLca5sP9i/Av7LyAVQvm5RUFc + WJAXDAXya4tC8nQZ5wfz86YH/UF/QeD+JxNbmdwu+w/BXiB1/8eigDj/KStwb3X6UQQhqBM9ojyN + 4wc6UFsMLoKhoXq9kR1z4CThFjeMg7G6xPkPzGDTlHyXGsS3qUExk54VQU18olNxK6+oYU5IidAt + G5mLUCubFrZJ14FzwAz9Q1UL56NIyEhxRPimj7Y/Ulwo+VF5NQqCSzNl8qMLq344u6IK+eRodMrk + OT+qXFg9B033xy/z8/OuT9gML45TpcK6yJpGaMrkWQsrH0OPe8bZTMszDXkkzxNTJlc9vABxisiA + pOA2wQPfeLlsshKSEuw8lJ9P8iTR4vU3LnfkDaEqzD08r84qwmeXwi43JwCFs7dgTKJu37s5+k4m + X7SYni8RjdKtH0vZposJrjQDMK1VNFlNbShWdK+31tAjpXFibspQKXMW1FQ9VrmwYkEN1D2XllZ1 + mpxhVfU8IVS9AAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECvmHw/9ciRBoA + GAEA + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '7470' + Content-Type: + - application/octet-stream + User-Agent: + - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Sat, 08 Jul 2023 07:14:26 GMT + x-ms-version: + - '2022-11-02' + method: PUT + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/source/202307080000/c6f21d4f-7873-47ce-a6fe-d4e46791327b.tar.gz?sv=2021-12-02&se=2023-07-08T08%3A14%3A26Z&sr=b&sp=cw&sig=eSd8VBg%2BQI3fjHxg80vWPGCbDEgaBXCC544q06XjP9w%3D + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - xmTthmXYatXvKA67OCZH/w== + date: + - Sat, 08 Jul 2023 07:14:26 GMT + etag: + - '"0x8DB7F82F7050C8D"' + last-modified: + - Sat, 08 Jul 2023 07:14:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - BP8evwhJFUU= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2022-11-02' + status: + code: 201 + message: Created +- request: + body: '{"type": "DockerBuildRequest", "isArchiveEnabled": false, "imageNames": + ["containerapp000003:20230708001424884576"], "isPushEnabled": true, "noCache": + false, "dockerFilePath": "c427be653bc14f7ca8ae4b438b0b0519_Dockerfile", "arguments": + [], "platform": {"os": "Linux", "architecture": "amd64"}, "sourceLocation": + "source/202307080000/c6f21d4f-7873-47ce-a6fe-d4e46791327b.tar.gz"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '378' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-08T07:14:27+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:27.0643665+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview + response: + body: + string: '{"logLink":"https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D"}' + headers: + cache-control: + - no-cache + content-length: + - '227' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:28 GMT + etag: + - '"0x8DB7F82F7D8FA74"' + last-modified: + - Sat, 08 Jul 2023 07:14:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:28 GMT + etag: + - '"0x8DB7F82F7D8FA74"' + last-modified: + - Sat, 08 Jul 2023 07:14:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-range: + - bytes=0-4095 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: "2023/07/08 07:14:28 Downloading source code...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-range: + - bytes 0-47/48 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:28 GMT + etag: + - '"0x8DB7F82F7D8FA74"' + last-modified: + - Sat, 08 Jul 2023 07:14:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:28 GMT + etag: + - '"0x8DB7F82F7D8FA74"' + last-modified: + - Sat, 08 Jul 2023 07:14:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:31 GMT + etag: + - '"0x8DB7F82F9AFA102"' + last-modified: + - Sat, 08 Jul 2023 07:14:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:31 GMT + x-ms-range: + - bytes=48-4143 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: "2023/07/08 07:14:29 Finished downloading source code\r\n2023/07/08 + 07:14:29 Using acb_vol_d3af5406-03c7-4107-8144-f68e4a6d8f30 as the home volume\n2023/07/08 + 07:14:29 Setting up Docker configuration...\n2023/07/08 07:14:30 Successfully + set up Docker configuration\n2023/07/08 07:14:30 Logging in to registry: containerapp000004.azurecr.io\n2023/07/08 + 07:14:30 Successfully logged into containerapp000004.azurecr.io\n2023/07/08 + 07:14:30 Executing step ID: build. Timeout(sec): 28800, Working directory: + '', Network: ''\n2023/07/08 07:14:30 Scanning for dependencies...\n2023/07/08 + 07:14:31 Successfully scanned dependencies\n2023/07/08 07:14:31 Launching + container with name: build\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '672' + content-range: + - bytes 48-731/732 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:31 GMT + etag: + - '"0x8DB7F82F9AFA102"' + last-modified: + - Sat, 08 Jul 2023 07:14:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:31 GMT + etag: + - '"0x8DB7F82F9AFA102"' + last-modified: + - Sat, 08 Jul 2023 07:14:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:34 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:33 GMT + etag: + - '"0x8DB7F82F9AFA102"' + last-modified: + - Sat, 08 Jul 2023 07:14:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:36 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1766' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:36 GMT + etag: + - '"0x8DB7F82FCAB7C84"' + last-modified: + - Sat, 08 Jul 2023 07:14:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:36 GMT + x-ms-range: + - bytes=732-4827 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: "Sending build context to Docker daemon 35.33kB\r\r\nStep 1/17 : FROM + mcr.microsoft.com/dotnet/aspnet:6.0 AS base\n6.0: Pulling from dotnet/aspnet\n9d21b12d5fab: + Pulling fs layer\neca6fd7d457a: Pulling fs layer\na989f10a2de0: Pulling fs + layer\ncf9782c65917: Pulling fs layer\n7c26c11d86af: Pulling fs layer\ncf9782c65917: + Waiting\n7c26c11d86af: Waiting\neca6fd7d457a: Verifying Checksum\neca6fd7d457a: + Download complete\na989f10a2de0: Verifying Checksum\na989f10a2de0: Download + complete\n9d21b12d5fab: Verifying Checksum\n9d21b12d5fab: Download complete\ncf9782c65917: + Verifying Checksum\ncf9782c65917: Download complete\n7c26c11d86af: Verifying + Checksum\n7c26c11d86af: Download complete\n9d21b12d5fab: Pull complete\r\neca6fd7d457a: + Pull complete\na989f10a2de0: Pull complete\ncf9782c65917: Pull complete\n7c26c11d86af: + Pull complete\nDigest: sha256:f383408c6be95a4a13edaecd3f5ff1aa8c9aebf29820d69b603367aa392dbbdd\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> 944b6c5ff1d6\nStep + 2/17 : WORKDIR /app\n ---> Running in 9cbb5afb8468\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1034' + content-range: + - bytes 732-1765/1766 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:36 GMT + etag: + - '"0x8DB7F82FCAB7C84"' + last-modified: + - Sat, 08 Jul 2023 07:14:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:36 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1766' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:36 GMT + etag: + - '"0x8DB7F82FCAB7C84"' + last-modified: + - Sat, 08 Jul 2023 07:14:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:38 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1766' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:38 GMT + etag: + - '"0x8DB7F82FCAB7C84"' + last-modified: + - Sat, 08 Jul 2023 07:14:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:41 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2123' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:40 GMT + etag: + - '"0x8DB7F82FE33BEF4"' + last-modified: + - Sat, 08 Jul 2023 07:14:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:41 GMT + x-ms-range: + - bytes=1766-5861 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: "Removing intermediate container 9cbb5afb8468\n ---> fac597188334\nStep + 3/17 : EXPOSE 80\n ---> Running in afa0ffb81b50\nRemoving intermediate container + afa0ffb81b50\n ---> de260dc90a8b\nStep 4/17 : EXPOSE 443\n ---> Running in + f08b2d70371f\nRemoving intermediate container f08b2d70371f\n ---> 38cbc42d3d83\nStep + 5/17 : FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '357' + content-range: + - bytes 1766-2122/2123 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:40 GMT + etag: + - '"0x8DB7F82FE33BEF4"' + last-modified: + - Sat, 08 Jul 2023 07:14:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:41 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2123' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:41 GMT + etag: + - '"0x8DB7F82FE33BEF4"' + last-modified: + - Sat, 08 Jul 2023 07:14:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:44 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2614' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:43 GMT + etag: + - '"0x8DB7F82FFC2D777"' + last-modified: + - Sat, 08 Jul 2023 07:14:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:44 GMT + x-ms-range: + - bytes=2123-6218 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: "6.0: Pulling from dotnet/sdk\n9d21b12d5fab: Already exists\neca6fd7d457a: + Already exists\na989f10a2de0: Already exists\ncf9782c65917: Already exists\n7c26c11d86af: + Already exists\n9982b59f30ae: Pulling fs layer\n5cfb30e275b9: Pulling fs layer\n40837876a537: + Pulling fs layer\n40837876a537: Verifying Checksum\n40837876a537: Download + complete\n9982b59f30ae: Verifying Checksum\n9982b59f30ae: Download complete\n5cfb30e275b9: + Verifying Checksum\n5cfb30e275b9: Download complete\n9982b59f30ae: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '491' + content-range: + - bytes 2123-2613/2614 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:43 GMT + etag: + - '"0x8DB7F82FFC2D777"' + last-modified: + - Sat, 08 Jul 2023 07:14:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:44 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2614' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:43 GMT + etag: + - '"0x8DB7F82FFC2D777"' + last-modified: + - Sat, 08 Jul 2023 07:14:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:46 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2614' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:46 GMT + etag: + - '"0x8DB7F82FFC2D777"' + last-modified: + - Sat, 08 Jul 2023 07:14:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2643' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:48 GMT + etag: + - '"0x8DB7F83030BE00B"' + last-modified: + - Sat, 08 Jul 2023 07:14:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:48 GMT + x-ms-range: + - bytes=2614-6709 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: "5cfb30e275b9: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '29' + content-range: + - bytes 2614-2642/2643 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:48 GMT + etag: + - '"0x8DB7F83030BE00B"' + last-modified: + - Sat, 08 Jul 2023 07:14:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2643' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:48 GMT + etag: + - '"0x8DB7F83030BE00B"' + last-modified: + - Sat, 08 Jul 2023 07:14:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:51 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3153' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:50 GMT + etag: + - '"0x8DB7F8304CA10F6"' + last-modified: + - Sat, 08 Jul 2023 07:14:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:51 GMT + x-ms-range: + - bytes=2643-6738 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: "40837876a537: Pull complete\nDigest: sha256:017deb67e5f21988120b322735d0c24beba3daf02e02b31dea4aea243a37a3e8\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> add3a601df3c\nStep + 6/17 : WORKDIR /src\n ---> Running in e4c80e39acad\nRemoving intermediate + container e4c80e39acad\n ---> 76a6044f3b22\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", + \".\"]\n ---> 9a59163c81fc\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\n + ---> Running in 2d81ecc3da66\n Determining projects to restore...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '510' + content-range: + - bytes 2643-3152/3153 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:50 GMT + etag: + - '"0x8DB7F8304CA10F6"' + last-modified: + - Sat, 08 Jul 2023 07:14:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:51 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3153' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:50 GMT + etag: + - '"0x8DB7F8304CA10F6"' + last-modified: + - Sat, 08 Jul 2023 07:14:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3341' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:53 GMT + etag: + - '"0x8DB7F830693A6D0"' + last-modified: + - Sat, 08 Jul 2023 07:14:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:53 GMT + x-ms-range: + - bytes=3153-7248 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: " Restored /src/TestWebApp202305.csproj (in 468 ms).\nRemoving intermediate + container 2d81ecc3da66\n ---> 561c691f087c\nStep 9/17 : COPY . .\n ---> 51783b8f27d9\nStep + 10/17 : WORKDIR \"/src/.\"\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '188' + content-range: + - bytes 3153-3340/3341 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:53 GMT + etag: + - '"0x8DB7F830693A6D0"' + last-modified: + - Sat, 08 Jul 2023 07:14:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3341' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:53 GMT + etag: + - '"0x8DB7F830693A6D0"' + last-modified: + - Sat, 08 Jul 2023 07:14:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:55 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3341' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:56 GMT + etag: + - '"0x8DB7F830693A6D0"' + last-modified: + - Sat, 08 Jul 2023 07:14:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:59 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3626' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:59 GMT + etag: + - '"0x8DB7F8309289F11"' + last-modified: + - Sat, 08 Jul 2023 07:14:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:59 GMT + x-ms-range: + - bytes=3341-7436 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: " ---> Running in 1ed2c414e01f\nRemoving intermediate container 1ed2c414e01f\n + ---> d49f6fa31a7d\nStep 11/17 : RUN dotnet build \"TestWebApp202305.csproj\" + -c Release -o /app/build\n ---> Running in 0b8d386a7bf5\nMSBuild version 17.3.2+561848881 + for .NET\n Determining projects to restore...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '285' + content-range: + - bytes 3341-3625/3626 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:59 GMT + etag: + - '"0x8DB7F8309289F11"' + last-modified: + - Sat, 08 Jul 2023 07:14:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:14:59 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3626' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:59 GMT + etag: + - '"0x8DB7F8309289F11"' + last-modified: + - Sat, 08 Jul 2023 07:14:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:02 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3899' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:01 GMT + etag: + - '"0x8DB7F830AD13C72"' + last-modified: + - Sat, 08 Jul 2023 07:15:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:02 GMT + x-ms-range: + - bytes=3626-7721 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: " All projects are up-to-date for restore.\n TestWebApp202305 -> /app/build/TestWebApp202305.dll\n\nBuild + succeeded.\n 0 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:04.50\nRemoving + intermediate container 0b8d386a7bf5\n ---> 5e1734c2811e\nStep 12/17 : FROM + build AS publish\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '273' + content-range: + - bytes 3626-3898/3899 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:01 GMT + etag: + - '"0x8DB7F830AD13C72"' + last-modified: + - Sat, 08 Jul 2023 07:15:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:02 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4243' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:02 GMT + etag: + - '"0x8DB7F830C1D073E"' + last-modified: + - Sat, 08 Jul 2023 07:15:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:02 GMT + x-ms-range: + - bytes=3899-7994 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: " ---> 5e1734c2811e\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" + -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in fa26526fcbd7\nMSBuild + version 17.3.2+561848881 for .NET\n Determining projects to restore...\n + \ All projects are up-to-date for restore.\n TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '344' + content-range: + - bytes 3899-4242/4243 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:02 GMT + etag: + - '"0x8DB7F830C1D073E"' + last-modified: + - Sat, 08 Jul 2023 07:15:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:02 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4243' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:02 GMT + etag: + - '"0x8DB7F830C1D073E"' + last-modified: + - Sat, 08 Jul 2023 07:15:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:05 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4641' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:05 GMT + etag: + - '"0x8DB7F830DC18A98"' + last-modified: + - Sat, 08 Jul 2023 07:15:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:05 GMT + x-ms-range: + - bytes=4243-8338 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: " TestWebApp202305 -> /app/publish/\nRemoving intermediate container + fa26526fcbd7\n ---> a4a42923897f\nStep 14/17 : FROM base AS final\n ---> 38cbc42d3d83\nStep + 15/17 : WORKDIR /app\n ---> Running in b728659ab444\nRemoving intermediate + container b728659ab444\n ---> abd8db2279bb\nStep 16/17 : COPY --from=publish + /app/publish .\n ---> 4bd4d541cf38\nStep 17/17 : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '398' + content-range: + - bytes 4243-4640/4641 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:05 GMT + etag: + - '"0x8DB7F830DC18A98"' + last-modified: + - Sat, 08 Jul 2023 07:15:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:05 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4641' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:05 GMT + etag: + - '"0x8DB7F830DC18A98"' + last-modified: + - Sat, 08 Jul 2023 07:15:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:08 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4641' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:07 GMT + etag: + - '"0x8DB7F830DC18A98"' + last-modified: + - Sat, 08 Jul 2023 07:15:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:10 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5483' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:10 GMT + etag: + - '"0x8DB7F830FA126A9"' + last-modified: + - Sat, 08 Jul 2023 07:15:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:10 GMT + x-ms-range: + - bytes=4641-8736 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: " ---> Running in 42bb9cedd8c0\nRemoving intermediate container 42bb9cedd8c0\n + ---> 3d40f0e37a1f\nSuccessfully built 3d40f0e37a1f\nSuccessfully tagged containerapp000004.azurecr.io/containerapp000003:20230708001424884576\n2023/07/08 + 07:15:06 Successfully executed container: build\n2023/07/08 07:15:06 Executing + step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2023/07/08 + 07:15:06 Pushing image: containerapp000004.azurecr.io/containerapp000003:20230708001424884576, + attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/containerapp000003]\n5fa62d14d525: + Preparing\n526a382594b1: Preparing\n0952b6289d62: Preparing\nd6610a4343a7: + Preparing\na3262e06e330: Preparing\ncedd91c685c9: Preparing\n4b3ba104e9a8: + Preparing\ncedd91c685c9: Waiting\n4b3ba104e9a8: Waiting\nd6610a4343a7: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '806' + content-range: + - bytes 4641-5482/5483 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:10 GMT + etag: + - '"0x8DB7F830FA126A9"' + last-modified: + - Sat, 08 Jul 2023 07:15:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:10 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5483' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:10 GMT + etag: + - '"0x8DB7F830FA126A9"' + last-modified: + - Sat, 08 Jul 2023 07:15:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:13 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5568' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:13 GMT + etag: + - '"0x8DB7F8312B8A6C2"' + last-modified: + - Sat, 08 Jul 2023 07:15:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:13 GMT + x-ms-range: + - bytes=5483-9578 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: "5fa62d14d525: Pushed\n526a382594b1: Pushed\n0952b6289d62: Pushed\ncedd91c685c9: + Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '85' + content-range: + - bytes 5483-5567/5568 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:13 GMT + etag: + - '"0x8DB7F8312B8A6C2"' + last-modified: + - Sat, 08 Jul 2023 07:15:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:13 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5568' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:13 GMT + etag: + - '"0x8DB7F8312B8A6C2"' + last-modified: + - Sat, 08 Jul 2023 07:15:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:16 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5568' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:15 GMT + etag: + - '"0x8DB7F8312B8A6C2"' + last-modified: + - Sat, 08 Jul 2023 07:15:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '6878' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:18 GMT + etag: + - '"0x8DB7F8314EC45B6"' + last-modified: + - Sat, 08 Jul 2023 07:15:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:18 GMT + x-ms-range: + - bytes=5568-9663 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: "4b3ba104e9a8: Pushed\na3262e06e330: Pushed\n20230708001424884576: digest: + sha256:4926c0610d1fa53d22ee695ad6bc2675dd81032429b0f5fa35d4b05256b516c6 size: + 1786\n2023/07/08 07:15:14 Successfully pushed image: containerapp000004.azurecr.io/containerapp000003:20230708001424884576\n2023/07/08 + 07:15:14 Step ID: build marked as successful (elapsed time in seconds: 35.378757)\n2023/07/08 + 07:15:14 Populating digests for step ID: build...\n2023/07/08 07:15:16 Successfully + populated digests for step ID: build\n2023/07/08 07:15:16 Step ID: push marked + as successful (elapsed time in seconds: 8.602040)\n2023/07/08 07:15:16 The + following dependencies were found:\n2023/07/08 07:15:16 \n- image:\n registry: + containerapp000004.azurecr.io\n repository: containerapp000003\n tag: + \"20230708001424884576\"\n digest: sha256:4926c0610d1fa53d22ee695ad6bc2675dd81032429b0f5fa35d4b05256b516c6\n + \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: dotnet/aspnet\n + \ tag: \"6.0\"\n digest: sha256:f383408c6be95a4a13edaecd3f5ff1aa8c9aebf29820d69b603367aa392dbbdd\n + \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: + dotnet/sdk\n tag: \"6.0\"\n digest: sha256:017deb67e5f21988120b322735d0c24beba3daf02e02b31dea4aea243a37a3e8\n + \ git: {}\n\r\nRun ID: ca1 was successful after 49s\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1286' + content-range: + - bytes 5568-6877/6878 + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:18 GMT + etag: + - '"0x8DB7F8314EC45B6"' + last-modified: + - Sat, 08 Jul 2023 07:15:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Sat, 08 Jul 2023 07:15:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '6878' + content-type: + - text/plain; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:18 GMT + etag: + - '"0x8DB7F8314EC45B6"' + last-modified: + - Sat, 08 Jul 2023 07:15:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Sat, 08 Jul 2023 07:14:28 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", + "value": "RjdfeoTxKBxsazLuQQJe5MDKQpv6osRoh/21ynTNrd+ACRCRJDUn"}], "activeRevisionsMode": + "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": + "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", + "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], + "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "containerapp000004.azurecr.io/containerapp000003:20230708001424884576", "name": + "containerapp000003", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1225' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:22.7721127Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:22.7721127Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.214.222"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-ec4abd84.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230708001424884576","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '2402' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '699' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c","name":"689abb14-5d2f-44a5-a5e2-2de943984e2c","status":"InProgress","startTime":"2023-07-08T07:15:23.6512012"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c","name":"689abb14-5d2f-44a5-a5e2-2de943984e2c","status":"InProgress","startTime":"2023-07-08T07:15:23.6512012"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c","name":"689abb14-5d2f-44a5-a5e2-2de943984e2c","status":"Succeeded","startTime":"2023-07-08T07:15:23.6512012"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:22.7721127","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:22.7721127"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.214.222"],"latestRevisionName":"containerapp000003--6odmw8u","latestReadyRevisionName":"containerapp000003--6odmw8u","latestRevisionFqdn":"containerapp000003--6odmw8u.proudocean-ec4abd84.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-ec4abd84.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230708001424884576","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2533' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:22.7721127","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:22.7721127"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.214.222"],"latestRevisionName":"containerapp000003--6odmw8u","latestReadyRevisionName":"containerapp000003--6odmw8u","latestRevisionFqdn":"containerapp000003--6odmw8u.proudocean-ec4abd84.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-ec4abd84.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230708001424884576","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2533' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:15:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml new file mode 100644 index 00000000000..2fe32a42c79 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml @@ -0,0 +1,3706 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.1810841Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-09T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.1810841Z","modifiedDate":"2023-07-08T07:13:10.1810841Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p","name":"workspace-clitestrgn5isfsnaihp2s342ghm2p","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p?api-version=2021-12-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.1810841Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-09T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.1810841Z","modifiedDate":"2023-07-08T07:13:10.1810841Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p","name":"workspace-clitestrgn5isfsnaihp2s342ghm2p","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p/sharedKeys?api-version=2020-08-01 + response: + body: + string: '{"primarySharedKey":"ViWPHfIFJk1w09YknVEMzrhGYK9yT1suNXQ9Dqxhn6hd6CkKK3AGSrDTYTCiVD1Tj5xuvDQSzUoTuGiSu1iIqA==","secondarySharedKey":"hPWiIljUtBfxNc6PLGZ/GxNF+BUWEPkieGefiTVO7gI6OeCcSlABx7EGhSC1ZdJuZzM3nBYRvC/9nPJVVtrVfA=="}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + cache-control: + - no-cache + content-length: + - '223' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "46e0fcdd-a3be-4314-89fa-cb6884416397", + "sharedKey": "ViWPHfIFJk1w09YknVEMzrhGYK9yT1suNXQ9Dqxhn6hd6CkKK3AGSrDTYTCiVD1Tj5xuvDQSzUoTuGiSu1iIqA=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '450' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13: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 env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"Succeeded","startTime":"2023-07-08T07:13:20.1069314"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13: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 env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:13:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true, "anonymousPullEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-029a86dd-1d5f-11ee-9f6d-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1380' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-029a86dd-1d5f-11ee-9f6d-bce92fa43675?api-version=2022-02-01-preview + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-029a86dd-1d5f-11ee-9f6d-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview + response: + body: + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"aIhyAOHydj19LseDQVhSPHuYbsMHAnfb0JVm6CmbXi+ACRBbiI17"},{"name":"password2","value":"A1cC09wpT3lUtwBZhSwCm9Pzbi+q9IGVZ3jh+4Ay73+ACRBtWalS"}]}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '214' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 08 Jul 2023 07:14:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14: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 --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '234' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2g77p3nurkfjlsjzrkvxkrnxzjie3ecuq5z27v67wn7kn2bp7yzzyx7opqwakn6t/providers/Microsoft.ContainerRegistry/registries/containerappsnfatmtjjrri","name":"containerappsnfatmtjjrri","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T06:22:59.1080657Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T06:22:59.1080657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdksh6adyzsdtsskn73xjpztc7ysyosa4zupycqyveoabwax62cwrjjnvtscg76ndb/providers/Microsoft.ContainerRegistry/registries/containerapptcr7ww3ydgnx","name":"containerapptcr7ww3ydgnx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:37:34.4109563Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:37:34.4109563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cmn735q7w2nwwebppb5clx7mirv4xiylykhjye674ol2n3ijchndft46d3fsuw2r/providers/Microsoft.ContainerRegistry/registries/containerappimdj6e7r2gye","name":"containerappimdj6e7r2gye","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:53:07.4694556Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:53:07.4694556Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv4b4fipvuwf57kz3fxssmj7tpfpzncvupsohhfjr55gmfxvww3272nz4kbqvczmbn/providers/Microsoft.ContainerRegistry/registries/containerappq73aloxzz2f4","name":"containerappq73aloxzz2f4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:24.1395549Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:24.1395549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeligh3rsqvhhs3g3u4omisskxfsz7mofruquyma4xt26fgbbxxfst7j6ozmafmfjp/providers/Microsoft.ContainerRegistry/registries/containerappe26fbem5qobi","name":"containerappe26fbem5qobi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:11:09.2869299Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:11:09.2869299Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpih42vas4rxn6y2mg7ziqfpwydfd7v3fdcujs6qji6xofmp26r5cfvqrho64jx5j/providers/Microsoft.ContainerRegistry/registries/containerappht4ujbqscf6c","name":"containerappht4ujbqscf6c","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpqo2bynzrtzy7hehcnoopzcgigliypgumob5rrw74vfmrqxf3v7ucpmdqwfz4rd5j/providers/Microsoft.ContainerRegistry/registries/containerappr3s6fbx6lppt","name":"containerappr3s6fbx6lppt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '8430' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - '2022-12-01' + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 08 Jul 2023 07:14:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list + response: + body: + string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n + \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n + \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n + \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n + \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n + \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n + \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n + \ \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"builder-dotnet-7.0\",\n \"buildpack\",\n \"buildpack-20230118.1\",\n + \ \"buildpack-20230208.1\",\n \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n + \ \"buildpack-20230417.1\",\n \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n + \ \"buildpack-20230427.1\",\n \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n + \ \"buildpack-20230512.2\",\n \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n + \ \"buildpack-20230605.1\",\n \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n + \ \"buildpack-20230613.1\",\n \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n + \ \"buildpack-20230626.1\",\n \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n + \ \"buildpack-20230707.1\",\n \"buildpack-20230707.2\",\n \"buildpack-dotnet-7.0\",\n + \ \"capps\",\n \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n + \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n + \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n + \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n + \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n + \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n + \ \"stack-base\",\n \"stack-base-20230118.1\",\n \"stack-base-20230208.1\",\n + \ \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n \"stack-base-20230410.1\",\n + \ \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n \"stack-base-20230425.1\",\n + \ \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n \"stack-base-20230508.1\",\n + \ \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n \"stack-base-20230531.1\",\n + \ \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n \"stack-base-20230612.1\",\n + \ \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n \"stack-base-20230619.1\",\n + \ \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n \"stack-base-20230630.1\",\n + \ \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n \"stack-build\",\n + \ \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n \"stack-build-20230327.1\",\n + \ \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n \"stack-build-20230417.1\",\n + \ \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n \"stack-build-20230427.1\",\n + \ \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n \"stack-build-20230512.2\",\n + \ \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n \"stack-build-20230605.1\",\n + \ \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n \"stack-build-20230613.1\",\n + \ \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n \"stack-build-20230626.1\",\n + \ \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n \"stack-build-20230707.1\",\n + \ \"stack-build-20230707.2\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n + \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n + \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n + \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n + \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n + \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n + \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n + \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ ]\n}" + headers: + cache-control: + - max-age=300 + content-length: + - '4636' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:14:22 GMT + etag: + - '0x8DB7F82DB9D1762' + last-modified: + - Sat, 08 Jul 2023 07:13:41 GMT + x-cache: + - TCP_MISS + x-mcr-privacy: + - https://privacy.microsoft.com/en-us/privacystatement + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + x-msedge-ref: + - 'Ref A: 909B08BF99AD4D7991075C2358D042D1 Ref B: CO1EDGE2411 Ref C: 2023-07-08T07:14:22Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list + response: + body: + string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n + \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n + \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n + \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n + \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n + \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n + \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n + \ \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"builder-dotnet-7.0\",\n \"buildpack\",\n \"buildpack-20230118.1\",\n + \ \"buildpack-20230208.1\",\n \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n + \ \"buildpack-20230417.1\",\n \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n + \ \"buildpack-20230427.1\",\n \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n + \ \"buildpack-20230512.2\",\n \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n + \ \"buildpack-20230605.1\",\n \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n + \ \"buildpack-20230613.1\",\n \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n + \ \"buildpack-20230626.1\",\n \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n + \ \"buildpack-20230707.1\",\n \"buildpack-20230707.2\",\n \"buildpack-dotnet-7.0\",\n + \ \"capps\",\n \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n + \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n + \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n + \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n + \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n + \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n + \ \"stack-base\",\n \"stack-base-20230118.1\",\n \"stack-base-20230208.1\",\n + \ \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n \"stack-base-20230410.1\",\n + \ \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n \"stack-base-20230425.1\",\n + \ \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n \"stack-base-20230508.1\",\n + \ \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n \"stack-base-20230531.1\",\n + \ \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n \"stack-base-20230612.1\",\n + \ \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n \"stack-base-20230619.1\",\n + \ \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n \"stack-base-20230630.1\",\n + \ \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n \"stack-build\",\n + \ \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n \"stack-build-20230327.1\",\n + \ \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n \"stack-build-20230417.1\",\n + \ \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n \"stack-build-20230427.1\",\n + \ \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n \"stack-build-20230512.2\",\n + \ \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n \"stack-build-20230605.1\",\n + \ \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n \"stack-build-20230613.1\",\n + \ \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n \"stack-build-20230626.1\",\n + \ \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n \"stack-build-20230707.1\",\n + \ \"stack-build-20230707.2\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n + \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n + \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n + \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n + \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n + \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n + \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n + \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ ]\n}" + headers: + cache-control: + - max-age=300 + content-length: + - '4636' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:00 GMT + etag: + - '0x8DB7F82DB9D1762' + last-modified: + - Sat, 08 Jul 2023 07:13:41 GMT + x-cache: + - TCP_MISS + x-mcr-privacy: + - https://privacy.microsoft.com/en-us/privacystatement + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + x-msedge-ref: + - 'Ref A: 408EF16F36E54CBF8C4F10DF9ABD1B92 Ref B: CO1EDGE2609 Ref C: 2023-07-08T07:21:01Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2g77p3nurkfjlsjzrkvxkrnxzjie3ecuq5z27v67wn7kn2bp7yzzyx7opqwakn6t/providers/Microsoft.ContainerRegistry/registries/containerappsnfatmtjjrri","name":"containerappsnfatmtjjrri","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T06:22:59.1080657Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T06:22:59.1080657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdksh6adyzsdtsskn73xjpztc7ysyosa4zupycqyveoabwax62cwrjjnvtscg76ndb/providers/Microsoft.ContainerRegistry/registries/containerapptcr7ww3ydgnx","name":"containerapptcr7ww3ydgnx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:37:34.4109563Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:37:34.4109563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cmn735q7w2nwwebppb5clx7mirv4xiylykhjye674ol2n3ijchndft46d3fsuw2r/providers/Microsoft.ContainerRegistry/registries/containerappimdj6e7r2gye","name":"containerappimdj6e7r2gye","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:53:07.4694556Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:53:07.4694556Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv4b4fipvuwf57kz3fxssmj7tpfpzncvupsohhfjr55gmfxvww3272nz4kbqvczmbn/providers/Microsoft.ContainerRegistry/registries/containerappq73aloxzz2f4","name":"containerappq73aloxzz2f4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:24.1395549Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:24.1395549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeligh3rsqvhhs3g3u4omisskxfsz7mofruquyma4xt26fgbbxxfst7j6ozmafmfjp/providers/Microsoft.ContainerRegistry/registries/containerappe26fbem5qobi","name":"containerappe26fbem5qobi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:11:09.2869299Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:11:09.2869299Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '7206' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://containerapp000004.azurecr.io/v2/ + response: + body: + string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, + visit https://aka.ms/acr/authorization for more information.","detail":null}]} + + ' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '149' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:19 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://containerapppsi7catvaru2.azurecr.io/oauth2/token",service="containerapppsi7catvaru2.azurecr.io" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://containerapp000004.azurecr.io/v2/ + response: + body: + string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, + visit https://aka.ms/acr/authorization for more information.","detail":null}]} + + ' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '149' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:20 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://containerapppsi7catvaru2.azurecr.io/oauth2/token",service="containerapppsi7catvaru2.azurecr.io" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: grant_type=access_token&service=containerapppsi7catvaru2.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyIsImtpZCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjg4ODAwMDgyLCJuYmYiOjE2ODg4MDAwODIsImV4cCI6MTY4ODgwNTI4OSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2YzOTM4ZTg3LThjMjUtNDExZS1hN2E0LTc5ZjMzMDM1Yjk1ZS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBSEJ3aDRxdGFwdk5hWmFpUWZFUXNubFhaeVBJanY2T0JuUUkvM2g4Q2E4YzNMZDQ1SFczWk5NbmZLMmo0NkpiNW1TSmFZQ2FDd21nOGx5dEFFUnJNcVZLSy9GVkVMQUlqTnVHVlhITUxZeGs9IiwiYW1yIjpbInJzYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiZDNlODYyMTQtYmZiMy00ODdiLWE3MGItZWMxYTczZDE2YmQ3IiwiZmFtaWx5X25hbWUiOiJQYXJ0aGFzYXJhdGh5IiwiZ2l2ZW5fbmFtZSI6IlNuZWhhIiwiaXBhZGRyIjoiMjAwMTo0ODk4OjgwZTg6YjplOTFjOjRiMDc6MTllZDpkNjMiLCJuYW1lIjoiU25laGEgUGFydGhhc2FyYXRoeSIsIm9pZCI6ImYzOTM4ZTg3LThjMjUtNDExZS1hN2E0LTc5ZjMzMDM1Yjk1ZSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy01ODQ1MDYxMSIsInB1aWQiOiIxMDAzMjAwMjA2MkQ1NjEwIiwicmgiOiIwLkFSb0F2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIwWklmM2tBdXRkUHVrUGF3ZmoyTUJNYUFBYy4iLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJVaGxUZlNxVENSRlUyLU1XZDNjRDNyUTNmdkZJZGpTOTVKSVZCVmNJMHdrIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJzbmVoYXBhckBtaWNyb3NvZnQuY29tIiwidXBuIjoic25laGFwYXJAbWljcm9zb2Z0LmNvbSIsInV0aSI6InFNVm9US2liSVVLc28yVFU2THVqQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbImI3OWZiZjRkLTNlZjktNDY4OS04MTQzLTc2YjE5NGU4NTUwOSJdLCJ4bXNfY2MiOlsiQ1AxIl0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.a8vUowdmiJTEyIniSuUb2qIflRhU8CquPvBf-3tRVL2TxJs5Xei7rXkh3XC468XhgKiwfOLeW4XL494h8WjEQc0WCqmT8iGX74fPUK5zGMbgU48vVjY4MzDUv_etBy795JVsjlEgTYP1K7ipy7QaIfEV5WC9SCkmntlTdkzZh12iTMRGkxzDsmxATNpqxpWwftVTtuE6oU_WMtzOCeBH_WSYFh3Q_UUTZ2cd6t-YEm-kHN_P0Luszrn1z4er_P7GEVclMpKrX1irE2BNSzaSIzy9q5PUDc79ELt71NI4oo_d644vUtYdMP2B_yypidHdZDv3Nm9v7EVV3omgaE8fKQ + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '2315' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - python-requests/2.26.0 + method: POST + uri: https://containerapp000004.azurecr.io/oauth2/exchange + response: + body: + string: '{"refresh_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkNPQVU6UERZSDo0SVJYOjM2SEI6TFYzUDpWNFBGOko0NzQ6SzNOSjpPS1JCOlRZQUo6NEc0Szo1Q1NEIn0.eyJqdGkiOiJlNDRkMzA4Ny00MTBjLTRmZTktYWFhNi03NGRjNGEwYjM5NjgiLCJzdWIiOiJzbmVoYXBhckBtaWNyb3NvZnQuY29tIiwibmJmIjoxNjg4Nzk5OTgxLCJleHAiOjE2ODg4MTE2ODEsImlhdCI6MTY4ODc5OTk4MSwiaXNzIjoiQXp1cmUgQ29udGFpbmVyIFJlZ2lzdHJ5IiwiYXVkIjoiY29udGFpbmVyYXBwcHNpN2NhdHZhcnUyLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiYjQ5NjhkZDJkMTYxNDI4NWE2N2EwMTczNmY3YjczNWMiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwidGVuYW50IjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwicGVybWlzc2lvbnMiOnsiQWN0aW9ucyI6WyJyZWFkIiwid3JpdGUiLCJkZWxldGUiLCJkZWxldGVkL3JlYWQiLCJkZWxldGVkL3Jlc3RvcmUvYWN0aW9uIl0sIk5vdEFjdGlvbnMiOm51bGx9LCJyb2xlcyI6W119.4mWQ_ADSgzzJdbAcAq2ZPeO_JSE7ofnnxs9QT5l6y0eQXIPZxfoFzYtBa0q0NmLGCgHbEeUGSxz9ZRWwRPyCL3-cym6WrGm0VUCfxIOlqxtREnJgRsSoBXYjIQq06ACQX1DkdlydTuVKMrdrd6NRunp6Cf7qGKej4siM1eUeY8RN5PesNoBdvsAwu0LNMfJSo5Wb5qyq3xk-apIhWbMaUomHYZ3IjAjupwcUQqH-tnYI9HHqDMmvKmtp7gErlYx_M1KSGySv-n6KeIHuO6mRqmCoIlj8yJHKc7QpnRT5E1TKhxBIgry1giwEYfzDEvgeiC6jS3R-yDxZ_E-eUVpw4A"}' + headers: + connection: + - keep-alive + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:21 GMT + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", + "value": "aIhyAOHydj19LseDQVhSPHuYbsMHAnfb0JVm6CmbXi+ACRBbiI17"}], "activeRevisionsMode": + "single", "ingress": {"fqdn": null, "external": true, "targetPort": 8080, "transport": + "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", + "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], + "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.8-cbl-mariner2.0-20230708001422750546", + "name": "containerapp000003", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1266' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:21:37.0463983Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:21:37.0463983Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.101.10.159"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicecoast-b1602668.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.8-cbl-mariner2.0-20230708001422750546","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '2442' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '699' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0","name":"2f6297a9-bb49-49f2-accf-9672806ebba0","status":"InProgress","startTime":"2023-07-08T07:21:37.9202533"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0","name":"2f6297a9-bb49-49f2-accf-9672806ebba0","status":"InProgress","startTime":"2023-07-08T07:21:37.9202533"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0","name":"2f6297a9-bb49-49f2-accf-9672806ebba0","status":"Succeeded","startTime":"2023-07-08T07:21:37.9202533"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:21:37.0463983","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:21:37.0463983"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.101.10.159"],"latestRevisionName":"containerapp000003--s0nvn3i","latestReadyRevisionName":"containerapp000003--s0nvn3i","latestRevisionFqdn":"containerapp000003--s0nvn3i.nicecoast-b1602668.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicecoast-b1602668.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.8-cbl-mariner2.0-20230708001422750546","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2572' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:21:37.0463983","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:21:37.0463983"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.101.10.159"],"latestRevisionName":"containerapp000003--s0nvn3i","latestReadyRevisionName":"containerapp000003--s0nvn3i","latestRevisionFqdn":"containerapp000003--s0nvn3i.nicecoast-b1602668.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicecoast-b1602668.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.8-cbl-mariner2.0-20230708001422750546","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2572' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 08 Jul 2023 07:21:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py new file mode 100644 index 00000000000..22287759a0b --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py @@ -0,0 +1,46 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import os +import unittest + +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) + +from azext_containerapp.tests.latest.utils import create_and_verify_containerapp_create + +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) + +class ContainerAppCreateTest(ScenarioTest): + @live_only() + @ResourceGroupPreparer(location="westeurope") + def test_containerapp_create_source_with_Dockerfile_e2e(self, resource_group): + source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_dockerfile")) + ingress = 'external' + target_port = '80' + create_and_verify_containerapp_create(self, resource_group=resource_group, source_path=source_path, ingress=ingress, target_port=target_port) + + @live_only() + @ResourceGroupPreparer(location="westeurope") + def test_containerapp_create_source_with_buildpack_e2e(self, resource_group): + source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_buildpack")) + ingress = 'external' + target_port = '8080' + create_and_verify_containerapp_create(self, resource_group=resource_group, source_path=source_path, ingress=ingress, target_port=target_port) + + @live_only() + @ResourceGroupPreparer(location="westeurope") + def test_containerapp_create_source_and_image_e2e(self, resource_group): + image = "mcr.microsoft.com/dotnet/runtime:7.0" + source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_dockerfile")) + create_and_verify_containerapp_create(self,resource_group=resource_group, image=image, source_path=source_path) + + @live_only() + @ResourceGroupPreparer(location="westeurope") + @unittest.skip("acr_task_run function from acr module uses outdated Storage SDK which does not work with testing.") + def test_containerapp_create_source_with_acr_task_e2e(self, resource_group): + source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_acr_task")) + ingress = 'external' + target_port = '8080' + create_and_verify_containerapp_create(self,resource_group=resource_group, source_path=source_path, ingress=ingress, target_port=target_port) \ No newline at end of file diff --git a/src/containerapp/azext_containerapp/tests/latest/utils.py b/src/containerapp/azext_containerapp/tests/latest/utils.py index aee77832b9b..0a671a2be39 100644 --- a/src/containerapp/azext_containerapp/tests/latest/utils.py +++ b/src/containerapp/azext_containerapp/tests/latest/utils.py @@ -69,4 +69,70 @@ def create_and_verify_containerapp_up( # Re-run the 'az containerapp up' command with the location parameter if provided if location: up_cmd += f" -l {location.upper()}" - test_cls.cmd(up_cmd) \ No newline at end of file + test_cls.cmd(up_cmd) + +def create_and_verify_containerapp_create( + test_cls, + resource_group, + env_name = None, + source_path = None, + image = None, + ingress = None, + target_port = None, + app_name = None, + registry_server = None, + registry_user = None, + registry_pass = None): + # Configure the default location + test_cls.cmd('configure --defaults location={}'.format(TEST_LOCATION)) + + # Ensure that the Container App environment is created + if env_name is None: + env_name = test_cls.create_random_name(prefix='env', length=24) + test_cls.cmd(f'containerapp env create -g {resource_group} -n {env_name} -l "westeurope"') + + if app_name is None: + # Generate a name for the Container App + app_name = test_cls.create_random_name(prefix='containerapp', length=24) + + registry_name = test_cls.create_random_name(prefix='containerapp', length=24) + + # Create ACR + acr = test_cls.cmd('acr create -g {} -n {} --sku Basic --admin-enabled'.format(resource_group, registry_name)).get_output_in_json() + if registry_server is None : + registry_server = acr["loginServer"] + + acr_credentials = test_cls.cmd('acr credential show -g {} -n {}'.format(resource_group, registry_name)).get_output_in_json() + if registry_user is None: + registry_user = acr_credentials["username"] + if registry_pass is None: + registry_pass = acr_credentials["passwords"][0]["value"] + image_name = registry_server + "/" + app_name + + # Construct the 'az containerapp create' command + create_cmd = 'containerapp create -g {} -n {} --environment {} --registry-username {} --registry-server {} --registry-password {} --source {}'.format( + resource_group, app_name, env_name, registry_user, registry_server, registry_pass, source_path) + if source_path: + create_cmd += f" --source \"{source_path}\"" + if image: + create_cmd += f" --image {image}" + image_name = registry_server + "/" + _reformat_image(image) + if ingress: + create_cmd += f" --ingress {ingress}" + if target_port: + create_cmd += f" --target-port {target_port}" + + # Execute the 'az containerapp create' command + test_cls.cmd(create_cmd) + + # Verify successful execution + app = test_cls.cmd(f"containerapp show -g {resource_group} -n {app_name}").get_output_in_json() + test_cls.assertEqual(app["properties"]["configuration"]["registries"][0]["server"], registry_server) + test_cls.assertEqual(app["properties"]["configuration"]["registries"][0]["username"], registry_user) + test_cls.assertEqual(app["properties"]["provisioningState"], "Succeeded") + test_cls.assertEqual(app["properties"]["template"]["containers"][0]["image"].split(":")[0], image_name) + +def _reformat_image(image): + image = image.split("/")[-1] + image = image.replace(":","") + return image From 3a809caf82bd73e81598f9a63416545faa0ed251 Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Tue, 25 Jul 2023 12:32:11 -0700 Subject: [PATCH 10/15] Add source back --- src/containerapp/azext_containerapp/containerapp_decorator.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/containerapp/azext_containerapp/containerapp_decorator.py b/src/containerapp/azext_containerapp/containerapp_decorator.py index ec8f15f2a89..180425ecb4d 100644 --- a/src/containerapp/azext_containerapp/containerapp_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_decorator.py @@ -567,6 +567,10 @@ def construct_containerapp(self): else: set_managed_identity(self.cmd, self.get_argument_resource_group_name(), self.containerapp_def, user_assigned=[self.get_argument_registry_identity()]) + if self.get_argument_source(): + app = self.set_up_create_containerapp_if_source_or_repo(containerapp_def=self.containerapp_def) + containerapp_def = self.set_up_create_containerapp_source(app=app, containerapp_def=self.containerapp_def) + def create_containerapp(self): try: r = self.client.create_or_update( From 07e1be5b7e7440c3aa1162879510f1100b5ab8e3 Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Tue, 25 Jul 2023 12:56:45 -0700 Subject: [PATCH 11/15] Remove return statement --- .../azext_containerapp/containerapp_decorator.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/containerapp/azext_containerapp/containerapp_decorator.py b/src/containerapp/azext_containerapp/containerapp_decorator.py index 180425ecb4d..22e6c38e03f 100644 --- a/src/containerapp/azext_containerapp/containerapp_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_decorator.py @@ -568,8 +568,8 @@ def construct_containerapp(self): set_managed_identity(self.cmd, self.get_argument_resource_group_name(), self.containerapp_def, user_assigned=[self.get_argument_registry_identity()]) if self.get_argument_source(): - app = self.set_up_create_containerapp_if_source_or_repo(containerapp_def=self.containerapp_def) - containerapp_def = self.set_up_create_containerapp_source(app=app, containerapp_def=self.containerapp_def) + app = self.set_up_create_containerapp_if_source_or_repo() + self.containerapp_def = self.set_up_create_containerapp_source(app=app) def create_containerapp(self): try: @@ -626,15 +626,15 @@ def post_process_containerapp(self, r): linker_name=item["linker_name"]).result() if self.get_argument_repo(): - app = self.set_up_create_containerapp_if_source_or_repo(containerapp_def=containerapp_def) + app = self.set_up_create_containerapp_if_source_or_repo() r = self.set_up_create_containerapp_repo(app=app, r=r, env=app.env, env_rg=app.resource_group.name) return r - def set_up_create_containerapp_if_source_or_repo(self, containerapp_def): + def set_up_create_containerapp_if_source_or_repo(self): from ._up_utils import (ContainerApp, ResourceGroup, ContainerAppEnvironment, _reformat_image) # Parse resource group name and managed env name - env_id = containerapp_def["properties"]['environmentId'] + env_id = self.containerapp_def["properties"]['environmentId'] parsed_managed_env = parse_resource_id(env_id) env_name = parsed_managed_env['name'] env_rg = parsed_managed_env['resource_group'] @@ -653,7 +653,7 @@ def set_up_create_containerapp_if_source_or_repo(self, containerapp_def): return app - def set_up_create_containerapp_source(self, app, containerapp_def): + def set_up_create_containerapp_source(self, app): from ._up_utils import (_get_registry_details, get_token, _has_dockerfile, _get_dockerfile_content, _get_ingress_and_target_port) dockerfile = "Dockerfile" token = get_token(self.cmd, self.get_argument_repo(), self.get_argument_token()) @@ -669,8 +669,7 @@ def set_up_create_containerapp_source(self, app, containerapp_def): app.run_acr_build(dockerfile, self.get_argument_source(), quiet=False, build_from_source=not _has_dockerfile(self.get_argument_source(), dockerfile)) # Update image - containerapp_def["properties"]["template"]["containers"][0]["image"] = HELLO_WORLD_IMAGE if app.image is None else app.image - return containerapp_def + self.containerapp_def["properties"]["template"]["containers"][0]["image"] = HELLO_WORLD_IMAGE if app.image is None else app.image def set_up_create_containerapp_repo(self, app, r, env, env_rg): from ._up_utils import (_create_github_action, get_token) From 25862fbe9dd44e07f5182d7be8ed961746c337ef Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Tue, 25 Jul 2023 22:23:26 -0700 Subject: [PATCH 12/15] Addressed PR comments --- .../containerapp_decorator.py | 2 +- ...tainerapp_create_source_and_image_e2e.yaml | 2046 ++- ...app_create_source_with_Dockerfile_e2e.yaml | 2348 +-- ...erapp_create_source_with_acr_task_e2e.yaml | 13355 ++++++++++++++++ ...rapp_create_source_with_buildpack_e2e.yaml | 1182 +- .../tests/latest/test_containerapp_create.py | 12 +- 6 files changed, 16826 insertions(+), 2119 deletions(-) create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml diff --git a/src/containerapp/azext_containerapp/containerapp_decorator.py b/src/containerapp/azext_containerapp/containerapp_decorator.py index 22e6c38e03f..d4815c85227 100644 --- a/src/containerapp/azext_containerapp/containerapp_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_decorator.py @@ -569,7 +569,7 @@ def construct_containerapp(self): if self.get_argument_source(): app = self.set_up_create_containerapp_if_source_or_repo() - self.containerapp_def = self.set_up_create_containerapp_source(app=app) + self.set_up_create_containerapp_source(app=app) def create_containerapp(self): try: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml index 765b9410cb2..3984a9192bb 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml @@ -111,17 +111,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:05 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C359BB27A219447FA7EEA65F96024A76 Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -237,17 +239,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:05 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9AA452568BBB4ED9A2A6C0907859AA83 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -363,17 +367,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7EF636E0192F432FBC0575B8F42308E8 Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -489,17 +495,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EFF3B5C19B2148ECBFCC41C3159B8FB3 Ref B: CO6AA3150218047 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -645,17 +653,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7D27953DEBC949BAABBED9FFC37B7CE1 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -801,17 +811,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AC288DE78910496F8360AC7E41022C80 Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -836,10 +848,10 @@ interactions: User-Agent: - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop?api-version=2021-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.5809927Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-08T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.5809927Z","modifiedDate":"2023-07-08T07:13:10.5809927Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop","name":"workspace-clitestrgpqo2bynzrtzy7hehcnoop","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.8960536Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T13:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.8960536Z","modifiedDate":"2023-07-26T05:18:14.8960536Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh","name":"workspace-clitestrglep7rntu2kwnh4j2n4ynh","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -852,21 +864,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:10 GMT + - Wed, 26 Jul 2023 05:18:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop?api-version=2021-12-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh?api-version=2021-12-01-preview pragma: - no-cache request-context: - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 60C872D082604BC3A53792FF0EB84F4B Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:13Z' x-powered-by: - ASP.NET status: @@ -888,10 +904,10 @@ interactions: User-Agent: - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop?api-version=2021-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.5809927Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-08T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.5809927Z","modifiedDate":"2023-07-08T07:13:10.5809927Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop","name":"workspace-clitestrgpqo2bynzrtzy7hehcnoop","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.8960536Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T13:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.8960536Z","modifiedDate":"2023-07-26T05:18:14.8960536Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh","name":"workspace-clitestrglep7rntu2kwnh4j2n4ynh","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -904,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:11 GMT + - Wed, 26 Jul 2023 05:18:15 GMT expires: - '-1' pragma: @@ -913,12 +929,12 @@ interactions: - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A00D59BB4B614C5EADCA7AB2B7BBA947 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:15Z' x-powered-by: - ASP.NET status: @@ -942,10 +958,10 @@ interactions: User-Agent: - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgpqo2bynzrtzy7hehcnoop/sharedKeys?api-version=2020-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh/sharedKeys?api-version=2020-08-01 response: body: - string: '{"primarySharedKey":"389YnmxLTJkJRgFKtzjwFE7Z5vv70KAFO+LmvZgVLcqcLdXEQ1IBMHdsJOcU+FLpBqMsWcmnuhe+NnLHb3ogXA==","secondarySharedKey":"GDIydpzMbXCBmt2FVJghKV8ezPT+tTZfl8vI12tdZ05dRPGZltUxD6EJ7+6/XdaDCoymsSwlmkyacFKc3/EqzQ=="}' + string: '{"primarySharedKey":"M7sQPN95hZm/JLR4Ei/aANIfk3+F4UHmQeqveNPLzEbc8GYSjEIXmTdrS8LsLRLloMLvjjmru0nShrvUsvIxeA==","secondarySharedKey":"V2LrUpSNUJzjt28E+LlkV+q7NY+MnCGQBzhccx5WEZcX5CJiOTtUxJQ/gS/a1yfs04G+E13Vy66TY7FFJSpkQA=="}' headers: access-control-allow-origin: - '*' @@ -958,7 +974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:12 GMT + - Wed, 26 Jul 2023 05:18:15 GMT expires: - '-1' pragma: @@ -967,14 +983,14 @@ interactions: - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: F0706CB6D5CB4AB8B55793AD2B2E61DF Ref B: CO6AA3150218037 Ref C: 2023-07-26T05:18:15Z' x-powered-by: - ASP.NET status: @@ -983,8 +999,8 @@ interactions: - request: body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "195ea9f3-216c-4464-8ece-fc706923d2db", - "sharedKey": "389YnmxLTJkJRgFKtzjwFE7Z5vv70KAFO+LmvZgVLcqcLdXEQ1IBMHdsJOcU+FLpBqMsWcmnuhe+NnLHb3ogXA=="}}, + "logAnalyticsConfiguration": {"customerId": "d7c53aab-e1c1-4453-bd47-e54c2edfc064", + "sharedKey": "M7sQPN95hZm/JLR4Ei/aANIfk3+F4UHmQeqveNPLzEbc8GYSjEIXmTdrS8LsLRLloMLvjjmru0nShrvUsvIxeA=="}}, "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": false}}' headers: @@ -1009,35 +1025,37 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1531' + - '1537' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:22 GMT + - Wed, 26 Jul 2023 05:18:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-async-operation-timeout: - PT15M x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '98' + x-msedge-ref: + - 'Ref A: 750A29BDDA154E168BEF60B7623B31FC Ref B: CO6AA3150219053 Ref C: 2023-07-26T05:18:16Z' x-powered-by: - ASP.NET status: @@ -1059,10 +1077,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1074,21 +1092,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:23 GMT + - Wed, 26 Jul 2023 05:18:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 14B2035408C04446A99C799E8BDC8005 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:18:23Z' x-powered-by: - ASP.NET status: @@ -1110,10 +1128,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1125,21 +1143,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:25 GMT + - Wed, 26 Jul 2023 05:18: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-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2B04921244274C0E9536F743E1E5A61C Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:18:26Z' x-powered-by: - ASP.NET status: @@ -1161,10 +1179,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1176,21 +1194,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:28 GMT + - Wed, 26 Jul 2023 05:18:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 80E1801E21824F20A8CF3D0E5A7CFA0A Ref B: CO6AA3150220037 Ref C: 2023-07-26T05:18:29Z' x-powered-by: - ASP.NET status: @@ -1212,10 +1230,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1227,21 +1245,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:31 GMT + - Wed, 26 Jul 2023 05:18:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 56880768028A4E68BE8536FE69194955 Ref B: CO6AA3150219033 Ref C: 2023-07-26T05:18:32Z' x-powered-by: - ASP.NET status: @@ -1263,10 +1281,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1278,21 +1296,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:35 GMT + - Wed, 26 Jul 2023 05:18:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B0E4915AC2A2429E95FE905088BA6203 Ref B: CO6AA3150218011 Ref C: 2023-07-26T05:18:35Z' x-powered-by: - ASP.NET status: @@ -1314,10 +1332,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1329,21 +1347,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:38 GMT + - Wed, 26 Jul 2023 05:18:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7242BF9874804BE290C9AD52C557DD38 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:18:38Z' x-powered-by: - ASP.NET status: @@ -1365,10 +1383,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1380,21 +1398,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:41 GMT + - Wed, 26 Jul 2023 05:18:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D04DC2A4ABE0467F8D0D2C4E1CBAA01E Ref B: CO6AA3150217017 Ref C: 2023-07-26T05:18:41Z' x-powered-by: - ASP.NET status: @@ -1416,10 +1434,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1431,21 +1449,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:44 GMT + - Wed, 26 Jul 2023 05:18:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9C3E070A849942B3BA532F58BE872DA2 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:18:44Z' x-powered-by: - ASP.NET status: @@ -1467,10 +1485,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1482,21 +1500,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:47 GMT + - Wed, 26 Jul 2023 05:18:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6D30A1C68F214140A1B3FBFAAF16D9D2 Ref B: CO6AA3150218009 Ref C: 2023-07-26T05:18:46Z' x-powered-by: - ASP.NET status: @@ -1518,10 +1536,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1533,21 +1551,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:50 GMT + - Wed, 26 Jul 2023 05:18:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D8C793B4206F4810810FDE6518E5043D Ref B: CO6AA3150219025 Ref C: 2023-07-26T05:18:49Z' x-powered-by: - ASP.NET status: @@ -1569,10 +1587,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1584,21 +1602,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:52 GMT + - Wed, 26 Jul 2023 05:18:53 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 76D8C95D08C74461B39B041924DE16B7 Ref B: CO6AA3150217011 Ref C: 2023-07-26T05:18:52Z' x-powered-by: - ASP.NET status: @@ -1620,10 +1638,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"InProgress","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1635,21 +1653,123 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:55 GMT + - Wed, 26 Jul 2023 05:18:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: A56E8DBC93FC44A48905FE74DB53E092 Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:18:55Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: F38DF027292E4768ABC0ED811DB5CB72 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:18:58Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19: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 + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 22B28D01FC4941D6B5914E1F2082223B Ref B: CO6AA3150220037 Ref C: 2023-07-26T05:19:01Z' x-powered-by: - ASP.NET status: @@ -1671,10 +1791,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","name":"6d8f0c80-766d-4c0a-b091-bce0f0d38c5b","status":"Succeeded","startTime":"2023-07-08T07:13:22.1084785"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"Succeeded","startTime":"2023-07-26T05:18:22.8458514"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1686,21 +1806,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:58 GMT + - Wed, 26 Jul 2023 05:19: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 + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2C934D96763F49ECA23CEF3C9D54E544 Ref B: CO6AA3150219023 Ref C: 2023-07-26T05:19:04Z' x-powered-by: - ASP.NET status: @@ -1726,7 +1846,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1734,25 +1854,25 @@ interactions: cache-control: - no-cache content-length: - - '1531' + - '1537' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:00 GMT + - Wed, 26 Jul 2023 05:19:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7ECDB64C38B94317B8175ABD50DE0A46 Ref B: CO6AA3150219011 Ref C: 2023-07-26T05:19:04Z' x-powered-by: - ASP.NET status: @@ -1783,12 +1903,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0645891Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:05.0882353Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03349060-1d5f-11ee-8240-bce92fa43675?api-version=2022-02-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1344bc4-2b73-11ee-91d2-bce92fa43675?api-version=2022-02-01-preview cache-control: - no-cache content-length: @@ -1796,19 +1916,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:13 GMT + - Wed, 26 Jul 2023 05:19:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 1B19E060C72E46288C21D6EA59291751 Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:19:04Z' status: code: 201 message: Created @@ -1829,7 +1951,7 @@ interactions: - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03349060-1d5f-11ee-8240-bce92fa43675?api-version=2022-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1344bc4-2b73-11ee-91d2-bce92fa43675?api-version=2022-02-01-preview response: body: string: '{"status":"Succeeded"}' @@ -1837,7 +1959,7 @@ interactions: api-supported-versions: - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03349060-1d5f-11ee-8240-bce92fa43675?api-version=2022-02-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1344bc4-2b73-11ee-91d2-bce92fa43675?api-version=2022-02-01-preview cache-control: - no-cache content-length: @@ -1845,21 +1967,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:13 GMT + - Wed, 26 Jul 2023 05:19:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8297F0318A4C4434B035AAB9AC4FF4ED Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:19:12Z' status: code: 200 message: OK @@ -1883,7 +2003,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0645891Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:05.0882353Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview @@ -1894,21 +2014,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:14 GMT + - Wed, 26 Jul 2023 05:19:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CF400342E71F4B69A3A6A325F5E73EC6 Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:19:13Z' status: code: 200 message: OK @@ -1932,7 +2050,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0645891Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:05.0882353Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview @@ -1943,21 +2061,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:16 GMT + - Wed, 26 Jul 2023 05:19:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D2958DFB4B9D415A9522DB8049E633A7 Ref B: CO6AA3150217051 Ref C: 2023-07-26T05:19:13Z' status: code: 200 message: OK @@ -1983,7 +2099,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview response: body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"D7fYCIg+KkHystIf/t6bRg8pXnvg5i9uVEt6x8OqHj+ACRAxyVUI"},{"name":"password2","value":"DDwNbtI3kWY740V90khXYtjzvsZtDhQQA51ReXc/EU+ACRDuroEq"}]}' + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"HcIEKNPWbyLYhVTzDSZ+hI9ZU3DmIb7uGY2VbSoE68+ACRB1QCNT"},{"name":"password2","value":"4fkAGvC5svoSf8caJGZmojVIgi2ltZy7gvuVGohLQm+ACRCVTgNK"}]}' headers: api-supported-versions: - 2022-02-01-preview @@ -1994,23 +2110,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:16 GMT + - Wed, 26 Jul 2023 05:19:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: DAD48ED657934D70830A419BC8D0D7F3 Ref B: CO6AA3150217035 Ref C: 2023-07-26T05:19:14Z' status: code: 200 message: OK @@ -2127,17 +2241,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:16 GMT + - Wed, 26 Jul 2023 05:19:14 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2A050520F3004666AD5AFFB83AF085AE Ref B: CO6AA3150217027 Ref C: 2023-07-26T05:19:14Z' status: code: 200 message: OK @@ -2162,7 +2278,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -2170,25 +2286,25 @@ interactions: cache-control: - no-cache content-length: - - '1531' + - '1537' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:18 GMT + - Wed, 26 Jul 2023 05:19:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F94B94BA70FB4D7D914CEDC3C3E38327 Ref B: CO6AA3150220021 Ref C: 2023-07-26T05:19:14Z' x-powered-by: - ASP.NET status: @@ -2307,17 +2423,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:17 GMT + - Wed, 26 Jul 2023 05:19:14 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 86FEDE14EBFF4D31959BA6546EDC5972 Ref B: CO6AA3150220035 Ref C: 2023-07-26T05:19:15Z' status: code: 200 message: OK @@ -2342,7 +2460,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -2350,25 +2468,25 @@ interactions: cache-control: - no-cache content-length: - - '1531' + - '1537' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:20 GMT + - Wed, 26 Jul 2023 05:19:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3588DEA9A8FB4D5BA2D59BF420C529A1 Ref B: CO6AA3150218049 Ref C: 2023-07-26T05:19:15Z' x-powered-by: - ASP.NET status: @@ -2401,15 +2519,19 @@ interactions: content-length: - '0' date: - - Sat, 08 Jul 2023 07:14:20 GMT + - Wed, 26 Jul 2023 05:19:16 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6D21BCD51DF044CFA1B893297C7F4500 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:19:16Z' status: code: 204 message: No Content @@ -2434,7 +2556,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.28562","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.28562"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"yellowsky-203b3625.westeurope.azurecontainerapps.io","staticIp":"20.71.6.55","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"195ea9f3-216c-4464-8ece-fc706923d2db","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -2442,25 +2564,25 @@ interactions: cache-control: - no-cache content-length: - - '1531' + - '1537' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:22 GMT + - Wed, 26 Jul 2023 05:19:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6CE754BAB9AF442D9F700C6B4323EFD5 Ref B: CO6AA3150217039 Ref C: 2023-07-26T05:19:16Z' x-powered-by: - ASP.NET status: @@ -2497,17 +2619,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:23 GMT + - Wed, 26 Jul 2023 05:19:17 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: E81F6271AADA4BA0B8203DD056924EDC Ref B: CO6AA3150219023 Ref C: 2023-07-26T05:19:17Z' status: code: 404 message: Not Found @@ -2531,26 +2657,28 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2g77p3nurkfjlsjzrkvxkrnxzjie3ecuq5z27v67wn7kn2bp7yzzyx7opqwakn6t/providers/Microsoft.ContainerRegistry/registries/containerappsnfatmtjjrri","name":"containerappsnfatmtjjrri","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T06:22:59.1080657Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T06:22:59.1080657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdksh6adyzsdtsskn73xjpztc7ysyosa4zupycqyveoabwax62cwrjjnvtscg76ndb/providers/Microsoft.ContainerRegistry/registries/containerapptcr7ww3ydgnx","name":"containerapptcr7ww3ydgnx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:37:34.4109563Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:37:34.4109563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cmn735q7w2nwwebppb5clx7mirv4xiylykhjye674ol2n3ijchndft46d3fsuw2r/providers/Microsoft.ContainerRegistry/registries/containerappimdj6e7r2gye","name":"containerappimdj6e7r2gye","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:53:07.4694556Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:53:07.4694556Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv4b4fipvuwf57kz3fxssmj7tpfpzncvupsohhfjr55gmfxvww3272nz4kbqvczmbn/providers/Microsoft.ContainerRegistry/registries/containerappq73aloxzz2f4","name":"containerappq73aloxzz2f4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:24.1395549Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:24.1395549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeligh3rsqvhhs3g3u4omisskxfsz7mofruquyma4xt26fgbbxxfst7j6ozmafmfjp/providers/Microsoft.ContainerRegistry/registries/containerappe26fbem5qobi","name":"containerappe26fbem5qobi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:11:09.2869299Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:11:09.2869299Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn5isfsnaihp2s342ghm2p3kpf45eg4fau5rqhhonew7c6mqfrzgn6ojvsjpodwpby/providers/Microsoft.ContainerRegistry/registries/containerapppsi7catvaru2","name":"containerapppsi7catvaru2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpih42vas4rxn6y2mg7ziqfpwydfd7v3fdcujs6qji6xofmp26r5cfvqrho64jx5j/providers/Microsoft.ContainerRegistry/registries/containerappht4ujbqscf6c","name":"containerappht4ujbqscf6c","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn37hfrmloz6jtk2snhwvzqaiemzxxmjtsqkgngpw3kpqzd4pffzxg3fmwlj7pkbaq/providers/Microsoft.ContainerRegistry/registries/containerappjnakgsbs3bbp","name":"containerappjnakgsbs3bbp","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' headers: cache-control: - no-cache content-length: - - '8430' + - '5906' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:22 GMT + - Wed, 26 Jul 2023 05:19:17 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5F11C48473BB48A789610D9F2217793B Ref B: CO6AA3150218039 Ref C: 2023-07-26T05:19:17Z' status: code: 200 message: OK @@ -2575,7 +2703,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0645891Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.2771036+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:05.0882353Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - '2022-12-01' @@ -2586,21 +2714,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:24 GMT + - Wed, 26 Jul 2023 05:19:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8E6B98F88A364297A23B76C79DC26037 Ref B: CO6AA3150217035 Ref C: 2023-07-26T05:19:18Z' status: code: 200 message: OK @@ -2717,17 +2843,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:25 GMT + - Wed, 26 Jul 2023 05:19:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9C65088CFB5C4430AEA8499C19030B30 Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:19:18Z' status: code: 200 message: OK @@ -2758,15 +2886,19 @@ interactions: content-length: - '0' date: - - Sat, 08 Jul 2023 07:14:25 GMT + - Wed, 26 Jul 2023 05:19:17 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8C6936AD91C341F8992BC31439B5FF80 Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:19:18Z' status: code: 204 message: No Content @@ -2793,36 +2925,36 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview response: body: - string: '{"uploadUrl":"https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/source/202307080000/dab98162-003c-4d09-8744-bbd6032671de.tar.gz?sv=2021-12-02&se=2023-07-08T08%3A14%3A26Z&sr=b&sp=cw&sig=f58JNUY4HPVE8odw7htPBebycBEEGTU3zD0filJbOJE%3D","relativePath":"source/202307080000/dab98162-003c-4d09-8744-bbd6032671de.tar.gz"}' + string: '{"uploadUrl":"https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/source/202307260000/956922e2-b835-4408-b791-448d92eb3baf.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A19Z&sr=b&sp=cw&sig=bZkgKPPtUHwYOBlIUwz1wtkQAzYZQEeYEAgXHFNLBRY%3D","relativePath":"source/202307260000/956922e2-b835-4408-b791-448d92eb3baf.tar.gz"}' headers: cache-control: - no-cache content-length: - - '352' + - '351' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:26 GMT + - Wed, 26 Jul 2023 05:19:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 9F881381E4AD4B4A8362142AFF756163 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:18Z' status: code: 200 message: OK - request: body: !!binary | - H4sICNEMqWQC/2J1aWxkX2FyY2hpdmVfMjI2YzUzY2U2NjlmNDcyMDk3ZTQ2MGVhMzg2MGUyMzEu + H4sICNiswGQC/2J1aWxkX2FyY2hpdmVfMzc2YmI4ODQ4ODhmNDRkNjllNTU4MjJjZGZkMzllYmYu dGFyAO09+XcUx5lkN/sL+3jPf0Jl/DYRfsylYwRCkpEBByUcWkm243Ucp2emJDX0dI+7eyRknuO8 zXr37fGSzcbJyz6v4yQ2NhgL22BuMMa3uQ8JARIIJCEMuhBIIA659quq7pmeQwIcGBNTn/0xre6q 7/vq+o7q6iqP1+OdVSEtnYelMNYn3RHwcRjv1+fLy0tc0/t+f36BfxJaOikLEDNMSQf2t7uQfyWQ @@ -2945,15 +3077,15 @@ interactions: xa/Mr4B2uzp6iT3bunUry396+6/JibdipH3Lr+P8x7N9p6HuaGxKY5/du3fPZnZ3XxM5/f6vScdH fxo3v2239u3bS0D/kIMHD75M9QTVK1SPU6TXE+l/auePQGwKevflTDoHaJbZtFJxeHiY6a/W1taX 7yY9Jd7/ifd/4v2fgLvn/d/iu2z/pwKx/5PQ/6L9hf4XkC39z5Z/LjbuzPifcP1nfur6j9xAQKz/ - zArQ87+9WTz/G5jd5iPAra2iH9Oh+6JGLaajH0j1Ej+/FIiH6Q7RYpwL+y/Gv7D/AlIh4A/MqPEF - 8nODQX9+uDB/xvT8wmA4WJA3Q/IVSuHAU4mtTO6U/Ydgz5+6/2OBX9j/rMD9VelHEYSgTrSI/AyO - H+hAbTG4CLqK6rQGdsyBnYRb3DAOxmoT5z8wg01T8l1qEN+mBsUMelYENfGJTsWtvKyEOSE5Qrds - ZC5CjWSY2CJdC84BM/QPVy5agCIhPcUR4Zs+Wv5IUcDjQ2VVKAguzZTJjy2q/OGc8krklaLRKZPn - /qhiUdVcNN0Xv8zPz7sxYSO8JE6VCusga+ihKZNnL6p4HD3hGmczLdc05PK4npwyufKRhYhTRDok - BbcJHnjHy2WR9SBPgp2L8vN6XEm0eP2Nyx25Q6gScw/PrbGK8FqlsMrNCUDhrC0Yk6hb926Nvp3J - Gy2i50tEo3TrxxK26WKCK80ATGtkVVJSG4oV3e2u0bVISZyYkzJUytyF1ZWPVywqX1gNdc+lpVWd - JmdYUVxPClUvQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQICAbxj8Pxi5uEAA - GAEA + zArQ87+9WTz/G5jd5iPAra2iH9Oh+6JGLaajH0j1Ej+/FIiH6Q7RYpwL+y/Gv7D/AlJhui/PXyAF + Z+QXBnF+aAaePj2Aa6SasD8vWBgKFwSfSmxlcqfsPwR7/pTxH6BHQgj7nwW4vyr9KIIQ1IkWkZ/B + 8QMdqC0GF0FXUZ3WwI45sJNwixvGwVht4vwHZrBpSr5LDeLb1KCYQc+KoCY+0am4lZeVMCckR+iW + jcxFqJEME1uka8E5YIb+4cpFC1AkpKc4InzTR8sfKQp4fKisCgXBpZky+bFFlT+cU16JvFI0OmXy + 3B9VLKqai6b74pf5+Xk3JmyEl8SpUmEdZA09NGXy7EUVj6MnXONspuWahlwe15NTJlc+shBxikiH + pOA2wQPveLkssh7kSbBzUX5ejyuJFq+/cbkjdwhVYu7huTVWEV6rFFa5OQEonLUFYxJ1696t0bcz + eaNF9HyJaJRu/VjCNl1McKUZgGmNrEpKakOxorvdNboWKYkTc1KGSpm7sLry8YpF5Quroe65tLSq + 0+QMK4rrSaHqBQgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQ8A2D/wdhpg4y + ABgBAA== headers: Accept: - application/xml @@ -2962,7 +3094,7 @@ interactions: Connection: - keep-alive Content-Length: - - '7470' + - '7471' Content-Type: - application/octet-stream User-Agent: @@ -2970,11 +3102,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Sat, 08 Jul 2023 07:14:27 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-version: - '2022-11-02' method: PUT - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/source/202307080000/dab98162-003c-4d09-8744-bbd6032671de.tar.gz?sv=2021-12-02&se=2023-07-08T08%3A14%3A26Z&sr=b&sp=cw&sig=f58JNUY4HPVE8odw7htPBebycBEEGTU3zD0filJbOJE%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/source/202307260000/956922e2-b835-4408-b791-448d92eb3baf.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A19Z&sr=b&sp=cw&sig=bZkgKPPtUHwYOBlIUwz1wtkQAzYZQEeYEAgXHFNLBRY%3D response: body: string: '' @@ -2982,17 +3114,17 @@ interactions: content-length: - '0' content-md5: - - yyPXuhA3C0pV7yOit8NoAw== + - +MFC0cfPMWVkc90Pg4Y7jQ== date: - - Sat, 08 Jul 2023 07:14:26 GMT + - Wed, 26 Jul 2023 05:19:19 GMT etag: - - '"0x8DB7F82F751C4D4"' + - '"0x8DB8D97DD8A30AD"' last-modified: - - Sat, 08 Jul 2023 07:14:27 GMT + - Wed, 26 Jul 2023 05:19:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: - - /wgjMrkPS98= + - dR5f9QQBrkc= x-ms-request-server-encrypted: - 'true' x-ms-version: @@ -3002,10 +3134,10 @@ interactions: message: Created - request: body: '{"type": "DockerBuildRequest", "isArchiveEnabled": false, "imageNames": - ["runtime7.0:20230708001425580041"], "isPushEnabled": true, "noCache": false, - "dockerFilePath": "6169f0642bb14d749847bdb539a07ad6_Dockerfile", "arguments": + ["runtime7.0:20230725221920510290"], "isPushEnabled": true, "noCache": false, + "dockerFilePath": "80315ab947be4c9e886efafd13b7cd5b_Dockerfile", "arguments": [], "platform": {"os": "Linux", "architecture": "amd64"}, "sourceLocation": - "source/202307080000/dab98162-003c-4d09-8744-bbd6032671de.tar.gz"}' + "source/202307260000/956922e2-b835-4408-b791-448d92eb3baf.tar.gz"}' headers: Accept: - application/json @@ -3029,7 +3161,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-08T07:14:28+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:27.5900093+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-26T05:19:20+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:20.0632149+00:00"}}' headers: cache-control: - no-cache @@ -3038,21 +3170,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: FC86D4C65E4D469F9BFA44230A281859 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:19Z' status: code: 200 message: OK @@ -3079,30 +3211,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview response: body: - string: '{"logLink":"https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D"}' + string: '{"logLink":"https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D"}' headers: cache-control: - no-cache content-length: - - '229' + - '228' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: C15C7DDE2FB84AC590EA9758C9F48BA5 Ref B: CO6AA3150217053 Ref C: 2023-07-26T05:19:20Z' status: code: 200 message: OK @@ -3114,11 +3246,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:23 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3130,23 +3262,23 @@ interactions: content-encoding: - utf-8 content-length: - - '102' + - '48' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:20 GMT etag: - - '"0x8DB7F82F8E4F76D"' + - '"0x8DB8D97DE529312"' last-modified: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '2' + - '1' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3166,11 +3298,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:23 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3182,23 +3314,23 @@ interactions: content-encoding: - utf-8 content-length: - - '102' + - '48' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:20 GMT etag: - - '"0x8DB7F82F8E4F76D"' + - '"0x8DB8D97DE529312"' last-modified: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '2' + - '1' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3218,17 +3350,122 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:23 GMT x-ms-range: - bytes=0-4095 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D + response: + body: + string: "2023/07/26 05:19:21 Downloading source code...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-range: + - bytes 0-47/48 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:20 GMT + etag: + - '"0x8DB8D97DE529312"' + last-modified: + - Wed, 26 Jul 2023 05:19:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:21 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "2023/07/08 07:14:29 Downloading source code...\r\n2023/07/08 07:14:30 - Finished downloading source code\r\n" + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:20 GMT + etag: + - '"0x8DB8D97DE529312"' + last-modified: + - Wed, 26 Jul 2023 05:19:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:21 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:25 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D + response: + body: + string: '' headers: accept-ranges: - bytes @@ -3238,16 +3475,70 @@ interactions: - utf-8 content-length: - '102' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:23 GMT + etag: + - '"0x8DB8D97DF5229F0"' + last-modified: + - Wed, 26 Jul 2023 05:19:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:21 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:26 GMT + x-ms-range: + - bytes=48-4143 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D + response: + body: + string: "2023/07/26 05:19:22 Finished downloading source code\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '54' content-range: - - bytes 0-101/102 + - bytes 48-101/102 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:23 GMT etag: - - '"0x8DB7F82F8E4F76D"' + - '"0x8DB8D97DF5229F0"' last-modified: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3255,7 +3546,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3275,11 +3566,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:26 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3295,11 +3586,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:23 GMT etag: - - '"0x8DB7F82F8E4F76D"' + - '"0x8DB8D97DF5229F0"' last-modified: - - Sat, 08 Jul 2023 07:14:30 GMT + - Wed, 26 Jul 2023 05:19:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3307,7 +3598,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3327,11 +3618,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:33 GMT + - Wed, 26 Jul 2023 05:19:28 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3347,11 +3638,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:33 GMT + - Wed, 26 Jul 2023 05:19:26 GMT etag: - - '"0x8DB7F82FA2B71C0"' + - '"0x8DB8D97E0BD43E4"' last-modified: - - Sat, 08 Jul 2023 07:14:32 GMT + - Wed, 26 Jul 2023 05:19:25 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3359,7 +3650,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3379,23 +3670,23 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:33 GMT + - Wed, 26 Jul 2023 05:19:28 GMT x-ms-range: - bytes=102-4197 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "2023/07/08 07:14:30 Using acb_vol_b02b3d71-00a0-471e-bc5e-e6fb3c5451d2 - as the home volume\n2023/07/08 07:14:30 Setting up Docker configuration...\n2023/07/08 - 07:14:31 Successfully set up Docker configuration\n2023/07/08 07:14:31 Logging - in to registry: containerapp000004.azurecr.io\n2023/07/08 07:14:31 Successfully - logged into containerapp000004.azurecr.io\n2023/07/08 07:14:31 Executing step - ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2023/07/08 - 07:14:31 Scanning for dependencies...\n2023/07/08 07:14:32 Successfully scanned - dependencies\n2023/07/08 07:14:32 Launching container with name: build\r\n" + string: "2023/07/26 05:19:23 Using acb_vol_344c0834-f115-44ca-9405-5742214eeb94 + as the home volume\n2023/07/26 05:19:23 Setting up Docker configuration...\n2023/07/26 + 05:19:24 Successfully set up Docker configuration\n2023/07/26 05:19:24 Logging + in to registry: containerapp000004.azurecr.io\n2023/07/26 05:19:24 Successfully + logged into containerapp000004.azurecr.io\n2023/07/26 05:19:24 Executing step + ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2023/07/26 + 05:19:24 Scanning for dependencies...\n2023/07/26 05:19:25 Successfully scanned + dependencies\n2023/07/26 05:19:25 Launching container with name: build\r\n" headers: accept-ranges: - bytes @@ -3410,11 +3701,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:33 GMT + - Wed, 26 Jul 2023 05:19:26 GMT etag: - - '"0x8DB7F82FA2B71C0"' + - '"0x8DB8D97E0BD43E4"' last-modified: - - Sat, 08 Jul 2023 07:14:32 GMT + - Wed, 26 Jul 2023 05:19:25 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3422,7 +3713,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3442,11 +3733,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:33 GMT + - Wed, 26 Jul 2023 05:19:28 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3462,11 +3753,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:33 GMT + - Wed, 26 Jul 2023 05:19:26 GMT etag: - - '"0x8DB7F82FA2B71C0"' + - '"0x8DB8D97E0BD43E4"' last-modified: - - Sat, 08 Jul 2023 07:14:32 GMT + - Wed, 26 Jul 2023 05:19:25 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3474,7 +3765,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3494,11 +3785,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:31 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3514,11 +3805,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:28 GMT etag: - - '"0x8DB7F82FBBBE84F"' + - '"0x8DB8D97E250795A"' last-modified: - - Sat, 08 Jul 2023 07:14:34 GMT + - Wed, 26 Jul 2023 05:19:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3526,7 +3817,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3546,24 +3837,24 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:31 GMT x-ms-range: - bytes=732-4827 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: "Sending build context to Docker daemon 35.33kB\r\r\nStep 1/17 : FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base\n6.0: Pulling from dotnet/aspnet\n9d21b12d5fab: - Pulling fs layer\neca6fd7d457a: Pulling fs layer\na989f10a2de0: Pulling fs - layer\ncf9782c65917: Pulling fs layer\n7c26c11d86af: Pulling fs layer\ncf9782c65917: - Waiting\n7c26c11d86af: Waiting\neca6fd7d457a: Verifying Checksum\neca6fd7d457a: - Download complete\ncf9782c65917: Verifying Checksum\ncf9782c65917: Download - complete\n9d21b12d5fab: Verifying Checksum\n9d21b12d5fab: Download complete\na989f10a2de0: - Verifying Checksum\na989f10a2de0: Download complete\n7c26c11d86af: Verifying - Checksum\n7c26c11d86af: Download complete\n9d21b12d5fab: Pull complete\r\n" + Pulling fs layer\n20307483facf: Pulling fs layer\n51885b20fc11: Pulling fs + layer\n573f002b5cb0: Pulling fs layer\nb70e22fadac0: Pulling fs layer\n573f002b5cb0: + Waiting\nb70e22fadac0: Waiting\n20307483facf: Verifying Checksum\n20307483facf: + Download complete\n51885b20fc11: Verifying Checksum\n51885b20fc11: Download + complete\n573f002b5cb0: Verifying Checksum\n573f002b5cb0: Download complete\n9d21b12d5fab: + Verifying Checksum\n9d21b12d5fab: Download complete\nb70e22fadac0: Verifying + Checksum\nb70e22fadac0: Download complete\n9d21b12d5fab: Pull complete\r\n" headers: accept-ranges: - bytes @@ -3578,11 +3869,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:28 GMT etag: - - '"0x8DB7F82FBBBE84F"' + - '"0x8DB8D97E250795A"' last-modified: - - Sat, 08 Jul 2023 07:14:34 GMT + - Wed, 26 Jul 2023 05:19:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3590,7 +3881,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3610,11 +3901,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:31 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3630,11 +3921,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:29 GMT etag: - - '"0x8DB7F82FBBBE84F"' + - '"0x8DB8D97E250795A"' last-modified: - - Sat, 08 Jul 2023 07:14:34 GMT + - Wed, 26 Jul 2023 05:19:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3642,7 +3933,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3662,11 +3953,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:38 GMT + - Wed, 26 Jul 2023 05:19:34 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3682,11 +3973,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:38 GMT + - Wed, 26 Jul 2023 05:19:31 GMT etag: - - '"0x8DB7F82FD09FB2B"' + - '"0x8DB8D97E39E24A9"' last-modified: - - Sat, 08 Jul 2023 07:14:37 GMT + - Wed, 26 Jul 2023 05:19:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3694,7 +3985,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3714,17 +4005,17 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:38 GMT + - Wed, 26 Jul 2023 05:19:34 GMT x-ms-range: - bytes=1428-5523 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "eca6fd7d457a: Pull complete\na989f10a2de0: Pull complete\ncf9782c65917: - Pull complete\n7c26c11d86af: Pull complete\r\n" + string: "20307483facf: Pull complete\n51885b20fc11: Pull complete\n573f002b5cb0: + Pull complete\nb70e22fadac0: Pull complete\r\n" headers: accept-ranges: - bytes @@ -3739,11 +4030,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:38 GMT + - Wed, 26 Jul 2023 05:19:31 GMT etag: - - '"0x8DB7F82FD09FB2B"' + - '"0x8DB8D97E39E24A9"' last-modified: - - Sat, 08 Jul 2023 07:14:37 GMT + - Wed, 26 Jul 2023 05:19:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3751,7 +4042,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3771,11 +4062,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:38 GMT + - Wed, 26 Jul 2023 05:19:34 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3791,11 +4082,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:38 GMT + - Wed, 26 Jul 2023 05:19:31 GMT etag: - - '"0x8DB7F82FD09FB2B"' + - '"0x8DB8D97E39E24A9"' last-modified: - - Sat, 08 Jul 2023 07:14:37 GMT + - Wed, 26 Jul 2023 05:19:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3803,7 +4094,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3823,11 +4114,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:36 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3843,11 +4134,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:33 GMT etag: - - '"0x8DB7F82FECA9A65"' + - '"0x8DB8D97E55C8261"' last-modified: - - Sat, 08 Jul 2023 07:14:40 GMT + - Wed, 26 Jul 2023 05:19:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3855,7 +4146,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3875,22 +4166,22 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:36 GMT x-ms-range: - bytes=1541-5636 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "Digest: sha256:f383408c6be95a4a13edaecd3f5ff1aa8c9aebf29820d69b603367aa392dbbdd\nStatus: - Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> 944b6c5ff1d6\nStep - 2/17 : WORKDIR /app\n ---> Running in d2741631acd3\nRemoving intermediate - container d2741631acd3\n ---> 8fbd9530fd35\nStep 3/17 : EXPOSE 80\n ---> Running - in 81120692a146\nRemoving intermediate container 81120692a146\n ---> abbdfd97517e\nStep - 4/17 : EXPOSE 443\n ---> Running in 8574354cb8a5\nRemoving intermediate container - 8574354cb8a5\n ---> 868cee20a182\nStep 5/17 : FROM mcr.microsoft.com/dotnet/sdk:6.0 + string: "Digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> e21be194dede\nStep + 2/17 : WORKDIR /app\n ---> Running in d42a2b98365e\nRemoving intermediate + container d42a2b98365e\n ---> 28ded58e1ef3\nStep 3/17 : EXPOSE 80\n ---> Running + in 4ea26b4974d9\nRemoving intermediate container 4ea26b4974d9\n ---> 7fa86d46a231\nStep + 4/17 : EXPOSE 443\n ---> Running in b620cdec3fc8\nRemoving intermediate container + b620cdec3fc8\n ---> 583c4d757501\nStep 5/17 : FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build\r\n" headers: accept-ranges: @@ -3906,11 +4197,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:34 GMT etag: - - '"0x8DB7F82FECA9A65"' + - '"0x8DB8D97E55C8261"' last-modified: - - Sat, 08 Jul 2023 07:14:40 GMT + - Wed, 26 Jul 2023 05:19:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3918,7 +4209,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3938,11 +4229,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:36 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -3954,23 +4245,23 @@ interactions: content-encoding: - utf-8 content-length: - - '2123' + - '2586' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:34 GMT etag: - - '"0x8DB7F82FECA9A65"' + - '"0x8DB8D97E6939BBF"' last-modified: - - Sat, 08 Jul 2023 07:14:40 GMT + - Wed, 26 Jul 2023 05:19:35 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '6' + - '7' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3990,11 +4281,72 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:44 GMT + - Wed, 26 Jul 2023 05:19:36 GMT + x-ms-range: + - bytes=2123-6218 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D + response: + body: + string: "6.0: Pulling from dotnet/sdk\n9d21b12d5fab: Already exists\n20307483facf: + Already exists\n51885b20fc11: Already exists\n573f002b5cb0: Already exists\nb70e22fadac0: + Already exists\n3daac94afcbd: Pulling fs layer\n4cda43ab38c0: Pulling fs layer\naa0c354e371d: + Pulling fs layer\naa0c354e371d: Verifying Checksum\naa0c354e371d: Download + complete\n3daac94afcbd: Verifying Checksum\n3daac94afcbd: Download complete\n4cda43ab38c0: + Verifying Checksum\n4cda43ab38c0: Download complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '463' + content-range: + - bytes 2123-2585/2586 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:34 GMT + etag: + - '"0x8DB8D97E6939BBF"' + last-modified: + - Wed, 26 Jul 2023 05:19:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:21 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:37 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4006,15 +4358,15 @@ interactions: content-encoding: - utf-8 content-length: - - '2614' + - '2586' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:44 GMT + - Wed, 26 Jul 2023 05:19:34 GMT etag: - - '"0x8DB7F830037F8FD"' + - '"0x8DB8D97E6939BBF"' last-modified: - - Sat, 08 Jul 2023 07:14:42 GMT + - Wed, 26 Jul 2023 05:19:35 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4022,7 +4374,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4042,21 +4394,14 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:44 GMT - x-ms-range: - - bytes=2123-6218 + - Wed, 26 Jul 2023 05:19:39 GMT x-ms-version: - '2018-11-09' - method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "6.0: Pulling from dotnet/sdk\n9d21b12d5fab: Already exists\neca6fd7d457a: - Already exists\na989f10a2de0: Already exists\ncf9782c65917: Already exists\n7c26c11d86af: - Already exists\n9982b59f30ae: Pulling fs layer\n5cfb30e275b9: Pulling fs layer\n40837876a537: - Pulling fs layer\n9982b59f30ae: Verifying Checksum\n9982b59f30ae: Download - complete\n40837876a537: Verifying Checksum\n40837876a537: Download complete\n5cfb30e275b9: - Verifying Checksum\n5cfb30e275b9: Download complete\n9982b59f30ae: Pull complete\r\n" + string: '' headers: accept-ranges: - bytes @@ -4065,17 +4410,15 @@ interactions: content-encoding: - utf-8 content-length: - - '491' - content-range: - - bytes 2123-2613/2614 + - '2586' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:44 GMT + - Wed, 26 Jul 2023 05:19:36 GMT etag: - - '"0x8DB7F830037F8FD"' + - '"0x8DB8D97E6939BBF"' last-modified: - - Sat, 08 Jul 2023 07:14:42 GMT + - Wed, 26 Jul 2023 05:19:35 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4083,7 +4426,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4093,8 +4436,8 @@ interactions: x-ms-version: - '2018-11-09' status: - code: 206 - message: Partial Content + code: 200 + message: OK - request: body: null headers: @@ -4103,11 +4446,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:44 GMT + - Wed, 26 Jul 2023 05:19:41 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4119,15 +4462,15 @@ interactions: content-encoding: - utf-8 content-length: - - '2614' + - '2586' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:44 GMT + - Wed, 26 Jul 2023 05:19:38 GMT etag: - - '"0x8DB7F830037F8FD"' + - '"0x8DB8D97E6939BBF"' last-modified: - - Sat, 08 Jul 2023 07:14:42 GMT + - Wed, 26 Jul 2023 05:19:35 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4135,7 +4478,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4155,11 +4498,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:47 GMT + - Wed, 26 Jul 2023 05:19:45 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4171,23 +4514,23 @@ interactions: content-encoding: - utf-8 content-length: - - '2614' + - '2643' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:47 GMT + - Wed, 26 Jul 2023 05:19:43 GMT etag: - - '"0x8DB7F830037F8FD"' + - '"0x8DB8D97EA5C7025"' last-modified: - - Sat, 08 Jul 2023 07:14:42 GMT + - Wed, 26 Jul 2023 05:19:41 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '7' + - '8' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4207,11 +4550,67 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:49 GMT + - Wed, 26 Jul 2023 05:19:45 GMT + x-ms-range: + - bytes=2586-6681 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D + response: + body: + string: "3daac94afcbd: Pull complete\n4cda43ab38c0: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '57' + content-range: + - bytes 2586-2642/2643 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:43 GMT + etag: + - '"0x8DB8D97EA5C7025"' + last-modified: + - Wed, 26 Jul 2023 05:19:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:21 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:45 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4223,23 +4622,23 @@ interactions: content-encoding: - utf-8 content-length: - - '3086' + - '2643' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:49 GMT + - Wed, 26 Jul 2023 05:19:43 GMT etag: - - '"0x8DB7F8304C1DCC6"' + - '"0x8DB8D97EA5C7025"' last-modified: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:41 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '9' + - '8' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4259,21 +4658,74 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3207' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:46 GMT + etag: + - '"0x8DB8D97ED240045"' + last-modified: + - Wed, 26 Jul 2023 05:19:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:21 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:48 GMT x-ms-range: - - bytes=2614-6709 + - bytes=2643-6738 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "5cfb30e275b9: Pull complete\r\n40837876a537: Pull complete\nDigest: - sha256:017deb67e5f21988120b322735d0c24beba3daf02e02b31dea4aea243a37a3e8\nStatus: - Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> add3a601df3c\nStep - 6/17 : WORKDIR /src\n ---> Running in 9815eba7cc58\nRemoving intermediate - container 9815eba7cc58\n ---> 761d6affb0cf\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", - \".\"]\n ---> d02360f07875\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\r\n" + string: "aa0c354e371d: Pull complete\nDigest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> 7d987f8db548\nStep + 6/17 : WORKDIR /src\n ---> Running in 5a6b3739f312\nRemoving intermediate + container 5a6b3739f312\n ---> 951d0d52ec27\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", + \".\"]\n ---> 594ac57a1c76\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\r\n + ---> Running in 0d0b4f0ccc42\n Determining projects to restore...\n Restored + /src/TestWebApp202305.csproj (in 676 ms).\r\n" headers: accept-ranges: - bytes @@ -4282,25 +4734,25 @@ interactions: content-encoding: - utf-8 content-length: - - '472' + - '564' content-range: - - bytes 2614-3085/3086 + - bytes 2643-3206/3207 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:49 GMT + - Wed, 26 Jul 2023 05:19:46 GMT etag: - - '"0x8DB7F8304C1DCC6"' + - '"0x8DB8D97ED240045"' last-modified: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '9' + - '10' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4320,11 +4772,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:48 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4336,23 +4788,23 @@ interactions: content-encoding: - utf-8 content-length: - - '3086' + - '3207' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:46 GMT etag: - - '"0x8DB7F8304C1DCC6"' + - '"0x8DB8D97ED240045"' last-modified: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '9' + - '10' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4372,11 +4824,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:52 GMT + - Wed, 26 Jul 2023 05:19:50 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4388,23 +4840,23 @@ interactions: content-encoding: - utf-8 content-length: - - '3086' + - '3207' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:52 GMT + - Wed, 26 Jul 2023 05:19:48 GMT etag: - - '"0x8DB7F8304C1DCC6"' + - '"0x8DB8D97ED240045"' last-modified: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '9' + - '10' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4424,11 +4876,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:55 GMT + - Wed, 26 Jul 2023 05:19:53 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4440,15 +4892,15 @@ interactions: content-encoding: - utf-8 content-length: - - '3547' + - '3517' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:51 GMT etag: - - '"0x8DB7F8308F95FDC"' + - '"0x8DB8D97EEE1C1DB"' last-modified: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4456,7 +4908,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4476,22 +4928,20 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:53 GMT x-ms-range: - - bytes=3086-7181 + - bytes=3207-7302 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: " ---> Running in ad22f19012b0\n Determining projects to restore...\n - \ Restored /src/TestWebApp202305.csproj (in 482 ms).\nRemoving intermediate - container ad22f19012b0\n ---> 6f1dcc2d2527\nStep 9/17 : COPY . .\r\n ---> - 109f274f65ca\nStep 10/17 : WORKDIR \"/src/.\"\n ---> Running in 468427b4780c\nRemoving - intermediate container 468427b4780c\n ---> e4ad228fd0ef\nStep 11/17 : RUN - dotnet build \"TestWebApp202305.csproj\" -c Release -o /app/build\n ---> Running - in 637cc09cd9dd\r\n" + string: "Removing intermediate container 0d0b4f0ccc42\n ---> 31e3f9ef7338\nStep + 9/17 : COPY . .\n ---> effad2f71d7a\nStep 10/17 : WORKDIR \"/src/.\"\n ---> + Running in 58f2dae4c401\nRemoving intermediate container 58f2dae4c401\n ---> + 140f3fd0560c\nStep 11/17 : RUN dotnet build \"TestWebApp202305.csproj\" -c + Release -o /app/build\r\n" headers: accept-ranges: - bytes @@ -4500,17 +4950,17 @@ interactions: content-encoding: - utf-8 content-length: - - '461' + - '310' content-range: - - bytes 3086-3546/3547 + - bytes 3207-3516/3517 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:51 GMT etag: - - '"0x8DB7F8308F95FDC"' + - '"0x8DB8D97EEE1C1DB"' last-modified: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4518,7 +4968,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4538,11 +4988,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:53 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4554,15 +5004,15 @@ interactions: content-encoding: - utf-8 content-length: - - '3547' + - '3517' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:51 GMT etag: - - '"0x8DB7F8308F95FDC"' + - '"0x8DB8D97EEE1C1DB"' last-modified: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4570,7 +5020,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4590,11 +5040,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:00 GMT + - Wed, 26 Jul 2023 05:19:55 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4606,15 +5056,15 @@ interactions: content-encoding: - utf-8 content-length: - - '3547' + - '3517' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:00 GMT + - Wed, 26 Jul 2023 05:19:54 GMT etag: - - '"0x8DB7F8308F95FDC"' + - '"0x8DB8D97EEE1C1DB"' last-modified: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4622,7 +5072,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4642,11 +5092,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:03 GMT + - Wed, 26 Jul 2023 05:19:58 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4658,15 +5108,15 @@ interactions: content-encoding: - utf-8 content-length: - - '4133' + - '4176' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:03 GMT + - Wed, 26 Jul 2023 05:19:57 GMT etag: - - '"0x8DB7F830C8282A7"' + - '"0x8DB8D97F36AE38E"' last-modified: - - Sat, 08 Jul 2023 07:15:03 GMT + - Wed, 26 Jul 2023 05:19:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4674,7 +5124,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4694,23 +5144,24 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:03 GMT + - Wed, 26 Jul 2023 05:19:58 GMT x-ms-range: - - bytes=3547-7642 + - bytes=3517-7612 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "MSBuild version 17.3.2+561848881 for .NET\n Determining projects to - restore...\n All projects are up-to-date for restore.\n TestWebApp202305 - -> /app/build/TestWebApp202305.dll\r\n\nBuild succeeded.\n 0 Warning(s)\n - \ 0 Error(s)\n\nTime Elapsed 00:00:05.24\nRemoving intermediate container - 637cc09cd9dd\n ---> 685f427186c6\nStep 12/17 : FROM build AS publish\n ---> - 685f427186c6\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" - -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in b6689b8c4634\nMSBuild - version 17.3.2+561848881 for .NET\n Determining projects to restore...\r\n" + string: " ---> Running in d0a5d95054b3\nMSBuild version 17.3.2+561848881 for + .NET\n Determining projects to restore...\n All projects are up-to-date + for restore.\n TestWebApp202305 -> /app/build/TestWebApp202305.dll\r\n\nBuild + succeeded.\n 0 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:04.74\nRemoving + intermediate container d0a5d95054b3\n ---> 0416584f522f\nStep 12/17 : FROM + build AS publish\n ---> 0416584f522f\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" + -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in 0b0d9e0cf0ce\nMSBuild + version 17.3.2+561848881 for .NET\n Determining projects to restore...\n + \ All projects are up-to-date for restore.\r\n" headers: accept-ranges: - bytes @@ -4719,17 +5170,17 @@ interactions: content-encoding: - utf-8 content-length: - - '586' + - '659' content-range: - - bytes 3547-4132/4133 + - bytes 3517-4175/4176 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:03 GMT + - Wed, 26 Jul 2023 05:19:57 GMT etag: - - '"0x8DB7F830C8282A7"' + - '"0x8DB8D97F36AE38E"' last-modified: - - Sat, 08 Jul 2023 07:15:03 GMT + - Wed, 26 Jul 2023 05:19:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4737,7 +5188,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4757,11 +5208,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:03 GMT + - Wed, 26 Jul 2023 05:19:58 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4773,15 +5224,15 @@ interactions: content-encoding: - utf-8 content-length: - - '4133' + - '4176' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:03 GMT + - Wed, 26 Jul 2023 05:19:57 GMT etag: - - '"0x8DB7F830C8282A7"' + - '"0x8DB8D97F36AE38E"' last-modified: - - Sat, 08 Jul 2023 07:15:03 GMT + - Wed, 26 Jul 2023 05:19:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4789,7 +5240,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4809,11 +5260,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:06 GMT + - Wed, 26 Jul 2023 05:20:01 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4825,15 +5276,15 @@ interactions: content-encoding: - utf-8 content-length: - - '4451' + - '4563' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:06 GMT + - Wed, 26 Jul 2023 05:19:59 GMT etag: - - '"0x8DB7F830DB81F52"' + - '"0x8DB8D97F4D64B9B"' last-modified: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:59 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4841,7 +5292,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4861,19 +5312,21 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:06 GMT + - Wed, 26 Jul 2023 05:20:01 GMT x-ms-range: - - bytes=4133-8228 + - bytes=4176-8271 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: " All projects are up-to-date for restore.\n TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\n - \ TestWebApp202305 -> /app/publish/\nRemoving intermediate container b6689b8c4634\n - ---> fc8473c7f684\nStep 14/17 : FROM base AS final\n ---> 868cee20a182\nStep - 15/17 : WORKDIR /app\n ---> Running in 4d463eca0244\r\n" + string: " TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\n + \ TestWebApp202305 -> /app/publish/\nRemoving intermediate container 0b0d9e0cf0ce\n + ---> 28fea806e70e\nStep 14/17 : FROM base AS final\n ---> 583c4d757501\nStep + 15/17 : WORKDIR /app\n ---> Running in cf92faf0e08a\nRemoving intermediate + container cf92faf0e08a\n ---> 35b846deaa42\nStep 16/17 : COPY --from=publish + /app/publish .\r\n" headers: accept-ranges: - bytes @@ -4882,17 +5335,17 @@ interactions: content-encoding: - utf-8 content-length: - - '318' + - '387' content-range: - - bytes 4133-4450/4451 + - bytes 4176-4562/4563 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:06 GMT + - Wed, 26 Jul 2023 05:19:59 GMT etag: - - '"0x8DB7F830DB81F52"' + - '"0x8DB8D97F4D64B9B"' last-modified: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:59 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4900,7 +5353,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4920,11 +5373,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:06 GMT + - Wed, 26 Jul 2023 05:20:01 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4936,15 +5389,15 @@ interactions: content-encoding: - utf-8 content-length: - - '4451' + - '4563' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:06 GMT + - Wed, 26 Jul 2023 05:19:59 GMT etag: - - '"0x8DB7F830DB81F52"' + - '"0x8DB8D97F4D64B9B"' last-modified: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:59 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4952,7 +5405,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4972,11 +5425,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:09 GMT + - Wed, 26 Jul 2023 05:20:04 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -4988,15 +5441,15 @@ interactions: content-encoding: - utf-8 content-length: - - '4736' + - '4768' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:09 GMT + - Wed, 26 Jul 2023 05:20:02 GMT etag: - - '"0x8DB7F830F7B04EE"' + - '"0x8DB8D97F6096DEF"' last-modified: - - Sat, 08 Jul 2023 07:15:08 GMT + - Wed, 26 Jul 2023 05:20:01 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5004,7 +5457,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5024,19 +5477,18 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:09 GMT + - Wed, 26 Jul 2023 05:20:04 GMT x-ms-range: - - bytes=4451-8546 + - bytes=4563-8658 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "Removing intermediate container 4d463eca0244\n ---> 578db12fee5d\nStep - 16/17 : COPY --from=publish /app/publish .\n ---> 63c054899816\nStep 17/17 - : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\n ---> Running in bb69905898c2\nRemoving - intermediate container bb69905898c2\n ---> 1e3c94fec2cd\r\n" + string: " ---> 657f7abe3d4b\nStep 17/17 : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\n + ---> Running in 4cb77a8591f1\nRemoving intermediate container 4cb77a8591f1\n + ---> ae1b975e19f9\nSuccessfully built ae1b975e19f9\r\n" headers: accept-ranges: - bytes @@ -5045,17 +5497,17 @@ interactions: content-encoding: - utf-8 content-length: - - '285' + - '205' content-range: - - bytes 4451-4735/4736 + - bytes 4563-4767/4768 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:09 GMT + - Wed, 26 Jul 2023 05:20:03 GMT etag: - - '"0x8DB7F830F7B04EE"' + - '"0x8DB8D97F6096DEF"' last-modified: - - Sat, 08 Jul 2023 07:15:08 GMT + - Wed, 26 Jul 2023 05:20:01 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5063,7 +5515,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5083,11 +5535,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:09 GMT + - Wed, 26 Jul 2023 05:20:04 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -5099,23 +5551,23 @@ interactions: content-encoding: - utf-8 content-length: - - '4736' + - '5462' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:09 GMT + - Wed, 26 Jul 2023 05:20:03 GMT etag: - - '"0x8DB7F830F7B04EE"' + - '"0x8DB8D97F7425BCB"' last-modified: - - Sat, 08 Jul 2023 07:15:08 GMT + - Wed, 26 Jul 2023 05:20:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '15' + - '16' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5135,14 +5587,24 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:12 GMT + - Wed, 26 Jul 2023 05:20:04 GMT + x-ms-range: + - bytes=4768-8863 x-ms-version: - '2018-11-09' - method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + method: GET + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: '' + string: "Successfully tagged containerapp000004.azurecr.io/runtime7.0:20230725221920510290\n2023/07/26 + 05:20:01 Successfully executed container: build\n2023/07/26 05:20:01 Executing + step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2023/07/26 + 05:20:01 Pushing image: containerapp000004.azurecr.io/runtime7.0:20230725221920510290, + attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/runtime7.0]\nbeab38b87a74: + Preparing\nfbee0fe5b03a: Preparing\n5ff9c7f01178: Preparing\nd20574564839: + Preparing\nd6b2f81086e4: Preparing\n333872f929fb: Preparing\n4b3ba104e9a8: + Preparing\n333872f929fb: Waiting\nbeab38b87a74: Pushed\nd20574564839: Pushed\nfbee0fe5b03a: + Pushed\r\n" headers: accept-ranges: - bytes @@ -5151,15 +5613,17 @@ interactions: content-encoding: - utf-8 content-length: - - '5442' + - '676' + content-range: + - bytes 4768-5461/5462 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:12 GMT + - Wed, 26 Jul 2023 05:20:03 GMT etag: - - '"0x8DB7F8310CBD31C"' + - '"0x8DB8D97F7425BCB"' last-modified: - - Sat, 08 Jul 2023 07:15:10 GMT + - Wed, 26 Jul 2023 05:20:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5167,7 +5631,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5177,8 +5641,8 @@ interactions: x-ms-version: - '2018-11-09' status: - code: 200 - message: OK + code: 206 + message: Partial Content - request: body: null headers: @@ -5187,23 +5651,14 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:12 GMT - x-ms-range: - - bytes=4736-8831 + - Wed, 26 Jul 2023 05:20:05 GMT x-ms-version: - '2018-11-09' - method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "Successfully built 1e3c94fec2cd\nSuccessfully tagged containerapp000004.azurecr.io/runtime7.0:20230708001425580041\n2023/07/08 - 07:15:08 Successfully executed container: build\n2023/07/08 07:15:08 Executing - step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2023/07/08 - 07:15:08 Pushing image: containerapp000004.azurecr.io/runtime7.0:20230708001425580041, - attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/runtime7.0]\n4a7418e98294: - Preparing\nddd372b34d3d: Preparing\n0952b6289d62: Preparing\nd6610a4343a7: - Preparing\na3262e06e330: Preparing\ncedd91c685c9: Preparing\n4b3ba104e9a8: - Preparing\ncedd91c685c9: Waiting\n4b3ba104e9a8: Waiting\n4a7418e98294: Pushed\r\n" + string: '' headers: accept-ranges: - bytes @@ -5212,17 +5667,15 @@ interactions: content-encoding: - utf-8 content-length: - - '688' - content-range: - - bytes 4736-5441/5442 + - '5462' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:12 GMT + - Wed, 26 Jul 2023 05:20:03 GMT etag: - - '"0x8DB7F8310CBD31C"' + - '"0x8DB8D97F7425BCB"' last-modified: - - Sat, 08 Jul 2023 07:15:10 GMT + - Wed, 26 Jul 2023 05:20:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5230,7 +5683,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5240,8 +5693,8 @@ interactions: x-ms-version: - '2018-11-09' status: - code: 206 - message: Partial Content + code: 200 + message: OK - request: body: null headers: @@ -5250,11 +5703,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:12 GMT + - Wed, 26 Jul 2023 05:20:08 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -5266,15 +5719,15 @@ interactions: content-encoding: - utf-8 content-length: - - '5442' + - '5462' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:12 GMT + - Wed, 26 Jul 2023 05:20:06 GMT etag: - - '"0x8DB7F8310CBD31C"' + - '"0x8DB8D97F7425BCB"' last-modified: - - Sat, 08 Jul 2023 07:15:10 GMT + - Wed, 26 Jul 2023 05:20:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5282,7 +5735,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5302,11 +5755,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:15 GMT + - Wed, 26 Jul 2023 05:20:10 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -5318,15 +5771,15 @@ interactions: content-encoding: - utf-8 content-length: - - '5527' + - '5526' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:15 GMT + - Wed, 26 Jul 2023 05:20:08 GMT etag: - - '"0x8DB7F8312D1B7CB"' + - '"0x8DB8D97F9798127"' last-modified: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:06 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5334,7 +5787,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5354,17 +5807,16 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:15 GMT + - Wed, 26 Jul 2023 05:20:10 GMT x-ms-range: - - bytes=5442-9537 + - bytes=5462-9557 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "d6610a4343a7: Pushed\nddd372b34d3d: Pushed\n0952b6289d62: Pushed\ncedd91c685c9: - Pushed\r\n" + string: "5ff9c7f01178: Pushed\n333872f929fb: Pushed\nd6b2f81086e4: Pushed\r\n" headers: accept-ranges: - bytes @@ -5373,17 +5825,17 @@ interactions: content-encoding: - utf-8 content-length: - - '85' + - '64' content-range: - - bytes 5442-5526/5527 + - bytes 5462-5525/5526 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:15 GMT + - Wed, 26 Jul 2023 05:20:08 GMT etag: - - '"0x8DB7F8312D1B7CB"' + - '"0x8DB8D97F9798127"' last-modified: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:06 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5391,7 +5843,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5411,11 +5863,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:15 GMT + - Wed, 26 Jul 2023 05:20:10 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -5427,15 +5879,15 @@ interactions: content-encoding: - utf-8 content-length: - - '5527' + - '5526' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:15 GMT + - Wed, 26 Jul 2023 05:20:08 GMT etag: - - '"0x8DB7F8312D1B7CB"' + - '"0x8DB8D97F9798127"' last-modified: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:06 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5443,7 +5895,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5463,11 +5915,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:13 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -5479,15 +5931,15 @@ interactions: content-encoding: - utf-8 content-length: - - '5570' + - '5548' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:11 GMT etag: - - '"0x8DB7F8314B34D77"' + - '"0x8DB8D97FB4F5B0B"' last-modified: - - Sat, 08 Jul 2023 07:15:16 GMT + - Wed, 26 Jul 2023 05:20:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5495,7 +5947,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5515,16 +5967,16 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:13 GMT x-ms-range: - - bytes=5527-9622 + - bytes=5526-9621 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "a3262e06e330: Pushed\n4b3ba104e9a8: Pushed\r\n" + string: "4b3ba104e9a8: Pushed\r\n" headers: accept-ranges: - bytes @@ -5533,17 +5985,17 @@ interactions: content-encoding: - utf-8 content-length: - - '43' + - '22' content-range: - - bytes 5527-5569/5570 + - bytes 5526-5547/5548 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:11 GMT etag: - - '"0x8DB7F8314B34D77"' + - '"0x8DB8D97FB4F5B0B"' last-modified: - - Sat, 08 Jul 2023 07:15:16 GMT + - Wed, 26 Jul 2023 05:20:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5551,7 +6003,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5571,11 +6023,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:13 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -5587,15 +6039,15 @@ interactions: content-encoding: - utf-8 content-length: - - '5570' + - '5548' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:11 GMT etag: - - '"0x8DB7F8314B34D77"' + - '"0x8DB8D97FB4F5B0B"' last-modified: - - Sat, 08 Jul 2023 07:15:16 GMT + - Wed, 26 Jul 2023 05:20:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5603,7 +6055,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5623,11 +6075,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:21 GMT + - Wed, 26 Jul 2023 05:20:15 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -5639,15 +6091,15 @@ interactions: content-encoding: - utf-8 content-length: - - '6810' + - '6788' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:20 GMT + - Wed, 26 Jul 2023 05:20:14 GMT etag: - - '"0x8DB7F831665A3E2"' + - '"0x8DB8D97FCFD1972"' last-modified: - - Sat, 08 Jul 2023 07:15:19 GMT + - Wed, 26 Jul 2023 05:20:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5655,7 +6107,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5677,29 +6129,29 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:21 GMT + - Wed, 26 Jul 2023 05:20:16 GMT x-ms-range: - - bytes=5570-9665 + - bytes=5548-9643 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: - string: "20230708001425580041: digest: sha256:2c84ec3f0a7800dff875bdaea2a64eea98541d617041d7cc99e9de4c29008837 - size: 1786\n2023/07/08 07:15:17 Successfully pushed image: containerapp000004.azurecr.io/runtime7.0:20230708001425580041\n2023/07/08 - 07:15:17 Step ID: build marked as successful (elapsed time in seconds: 36.402682)\n2023/07/08 - 07:15:17 Populating digests for step ID: build...\n2023/07/08 07:15:19 Successfully - populated digests for step ID: build\n2023/07/08 07:15:19 Step ID: push marked - as successful (elapsed time in seconds: 9.490399)\n2023/07/08 07:15:19 The - following dependencies were found:\n2023/07/08 07:15:19 \n- image:\n registry: - containerapp000004.azurecr.io\n repository: runtime7.0\n tag: \"20230708001425580041\"\n - \ digest: sha256:2c84ec3f0a7800dff875bdaea2a64eea98541d617041d7cc99e9de4c29008837\n + string: "20230725221920510290: digest: sha256:b44e3db222d6286520827259c6dc81f697d224f81fe8e94b45b30fd31f047e71 + size: 1786\n2023/07/26 05:20:10 Successfully pushed image: containerapp000004.azurecr.io/runtime7.0:20230725221920510290\n2023/07/26 + 05:20:10 Step ID: build marked as successful (elapsed time in seconds: 36.472325)\n2023/07/26 + 05:20:10 Populating digests for step ID: build...\n2023/07/26 05:20:12 Successfully + populated digests for step ID: build\n2023/07/26 05:20:12 Step ID: push marked + as successful (elapsed time in seconds: 9.542823)\n2023/07/26 05:20:12 The + following dependencies were found:\n2023/07/26 05:20:12 \n- image:\n registry: + containerapp000004.azurecr.io\n repository: runtime7.0\n tag: \"20230725221920510290\"\n + \ digest: sha256:b44e3db222d6286520827259c6dc81f697d224f81fe8e94b45b30fd31f047e71\n \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: dotnet/aspnet\n - \ tag: \"6.0\"\n digest: sha256:f383408c6be95a4a13edaecd3f5ff1aa8c9aebf29820d69b603367aa392dbbdd\n + \ tag: \"6.0\"\n digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\n \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: - dotnet/sdk\n tag: \"6.0\"\n digest: sha256:017deb67e5f21988120b322735d0c24beba3daf02e02b31dea4aea243a37a3e8\n - \ git: {}\n\r\nRun ID: ca1 was successful after 51s\r\n" + dotnet/sdk\n tag: \"6.0\"\n digest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\n + \ git: {}\n\r\nRun ID: ca1 was successful after 52s\r\n" headers: accept-ranges: - bytes @@ -5710,15 +6162,15 @@ interactions: content-length: - '1228' content-range: - - bytes 5570-6809/6810 + - bytes 5548-6787/6788 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:20 GMT + - Wed, 26 Jul 2023 05:20:14 GMT etag: - - '"0x8DB7F831665A3E2"' + - '"0x8DB8D97FCFD1972"' last-modified: - - Sat, 08 Jul 2023 07:15:19 GMT + - Wed, 26 Jul 2023 05:20:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5726,7 +6178,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5748,11 +6200,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:21 GMT + - Wed, 26 Jul 2023 05:20:16 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/a202fc4144c34baabf6c9489ae67e752-5kqyuwdtey/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A29Z&sr=b&sp=r&sig=OJ%2BxDqZkO0ZjS9nLRfitb8KEcnQyPjaXXk5EVR1K%2BIs%3D + uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D response: body: string: '' @@ -5764,15 +6216,15 @@ interactions: content-encoding: - utf-8 content-length: - - '6810' + - '6788' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:21 GMT + - Wed, 26 Jul 2023 05:20:14 GMT etag: - - '"0x8DB7F831665A3E2"' + - '"0x8DB8D97FCFD1972"' last-modified: - - Sat, 08 Jul 2023 07:15:19 GMT + - Wed, 26 Jul 2023 05:20:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -5780,7 +6232,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:29 GMT + - Wed, 26 Jul 2023 05:19:21 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5798,11 +6250,11 @@ interactions: body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "D7fYCIg+KkHystIf/t6bRg8pXnvg5i9uVEt6x8OqHj+ACRAxyVUI"}], "activeRevisionsMode": + "value": "HcIEKNPWbyLYhVTzDSZ+hI9ZU3DmIb7uGY2VbSoE68+ACRB1QCNT"}], "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": - "containerapp000004.azurecr.io/runtime7.0:20230708001425580041", "name": "containerapp000003", + "containerapp000004.azurecr.io/runtime7.0:20230725221920510290", "name": "containerapp000003", "command": null, "args": null, "env": null, "resources": null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' @@ -5829,35 +6281,37 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:24.671135Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:24.671135Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.71.0.153"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230708001425580041","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:14.9352675Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:14.9352675Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.93.175.112"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230725221920510290","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '2054' + - '2058' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:27 GMT + - Wed, 26 Jul 2023 05:20:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-async-operation-timeout: - PT15M x-ms-ratelimit-remaining-subscription-resource-requests: - '699' + x-msedge-ref: + - 'Ref A: A27F00389D28489E890AA40B8BF52E31 Ref B: CO6AA3150218047 Ref C: 2023-07-26T05:20:14Z' x-powered-by: - ASP.NET status: @@ -5880,10 +6334,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","name":"ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","status":"InProgress","startTime":"2023-07-08T07:15:25.4196227"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b","name":"e3df15e2-418c-450e-936a-4c461cbc904b","status":"InProgress","startTime":"2023-07-26T05:20:15.7809231"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -5895,21 +6349,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:28 GMT + - Wed, 26 Jul 2023 05:20:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1AACDDD6B28B4AA0BC2C4117B91CF601 Ref B: CO6AA3150220031 Ref C: 2023-07-26T05:20:18Z' x-powered-by: - ASP.NET status: @@ -5932,10 +6386,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","name":"ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","status":"InProgress","startTime":"2023-07-08T07:15:25.4196227"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b","name":"e3df15e2-418c-450e-936a-4c461cbc904b","status":"InProgress","startTime":"2023-07-26T05:20:15.7809231"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -5947,21 +6401,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:31 GMT + - Wed, 26 Jul 2023 05:20:21 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D54D6910695747C9ABC4E737FF4E9519 Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:20:21Z' x-powered-by: - ASP.NET status: @@ -5984,10 +6438,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","name":"ba2331ca-c9c0-4cac-bcc2-d93628d5bd29","status":"Succeeded","startTime":"2023-07-08T07:15:25.4196227"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b","name":"e3df15e2-418c-450e-936a-4c461cbc904b","status":"Succeeded","startTime":"2023-07-26T05:20:15.7809231"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -5999,21 +6453,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:34 GMT + - Wed, 26 Jul 2023 05:20:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BE61F41E41E14B16B74295B70788258A Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:20:24Z' x-powered-by: - ASP.NET status: @@ -6040,7 +6494,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:24.671135","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:24.671135"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.71.0.153"],"latestRevisionName":"containerapp000003--056vhr7","latestReadyRevisionName":"containerapp000003--056vhr7","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230708001425580041","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:14.9352675","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:14.9352675"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.93.175.112"],"latestRevisionName":"containerapp000003--fcsfjeb","latestReadyRevisionName":"containerapp000003--fcsfjeb","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230725221920510290","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -6048,25 +6502,25 @@ interactions: cache-control: - no-cache content-length: - - '2105' + - '2109' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:37 GMT + - Wed, 26 Jul 2023 05:20:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1C988C550BB04E33881DF47FA0D97A58 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:20:24Z' x-powered-by: - ASP.NET status: @@ -6184,17 +6638,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:38 GMT + - Wed, 26 Jul 2023 05:20:24 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CF8614F2EB36426AA5BE0ECBFE405EC5 Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:20:25Z' status: code: 200 message: OK @@ -6218,7 +6674,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:24.671135","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:24.671135"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.71.0.153"],"latestRevisionName":"containerapp000003--056vhr7","latestReadyRevisionName":"containerapp000003--056vhr7","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230708001425580041","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:14.9352675","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:14.9352675"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.93.175.112"],"latestRevisionName":"containerapp000003--fcsfjeb","latestReadyRevisionName":"containerapp000003--fcsfjeb","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230725221920510290","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -6226,25 +6682,25 @@ interactions: cache-control: - no-cache content-length: - - '2105' + - '2109' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:39 GMT + - Wed, 26 Jul 2023 05:20:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8F51910A8CC34D00A90C2D6FBC16F387 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:20:25Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml index bc56bf10104..9410ca19c7c 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml @@ -111,17 +111,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:05 GMT + - Wed, 26 Jul 2023 05:18:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F011C430448447A5B2AFBDC19B85F84F Ref B: CO6AA3150220027 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -237,17 +239,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:05 GMT + - Wed, 26 Jul 2023 05:18:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 17776FC5FE15452A97241F399B8C66DE Ref B: CO6AA3150220035 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -363,17 +367,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E70A4BA8C6904340B7F9479FBC782887 Ref B: CO6AA3150219039 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -489,17 +495,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A71AB605BCB64582A7422EE6A89E8486 Ref B: CO6AA3150217025 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -645,17 +653,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8558CF8D4591471BAE6DB6BA11DCF0E1 Ref B: CO6AA3150219047 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -801,17 +811,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7D5C3B7707A0432DA46F101CBC241A90 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -836,10 +848,10 @@ interactions: User-Agent: - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi?api-version=2021-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.9240428Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-08T16:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.9240428Z","modifiedDate":"2023-07-08T07:13:10.9240428Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi","name":"workspace-clitestrgrpih42vas4rxn6y2mg7zi","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.5023388Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.5023388Z","modifiedDate":"2023-07-26T05:18:14.5023388Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv","name":"workspace-clitestrgm3mx7nmzviqbm2zt3oysv","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -852,21 +864,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:10 GMT + - Wed, 26 Jul 2023 05:18:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi?api-version=2021-12-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv?api-version=2021-12-01-preview pragma: - no-cache request-context: - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 0D5430C18057471282849284DC1E98B7 Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:18:13Z' x-powered-by: - ASP.NET status: @@ -888,10 +904,10 @@ interactions: User-Agent: - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi?api-version=2021-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.9240428Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-08T16:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.9240428Z","modifiedDate":"2023-07-08T07:13:10.9240428Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi","name":"workspace-clitestrgrpih42vas4rxn6y2mg7zi","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.5023388Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.5023388Z","modifiedDate":"2023-07-26T05:18:14.5023388Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv","name":"workspace-clitestrgm3mx7nmzviqbm2zt3oysv","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -904,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:11 GMT + - Wed, 26 Jul 2023 05:18:14 GMT expires: - '-1' pragma: @@ -913,12 +929,12 @@ interactions: - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AC302DDB7C4A4F188F03D205ABA572AD Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:18:14Z' x-powered-by: - ASP.NET status: @@ -942,10 +958,10 @@ interactions: User-Agent: - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrpih42vas4rxn6y2mg7zi/sharedKeys?api-version=2020-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv/sharedKeys?api-version=2020-08-01 response: body: - string: '{"primarySharedKey":"wC913ZgvAmuSe4TgsPlpm+xIULFEIPSvk7h2HsVKFNiXcNFLNrpRWpBRutdwAE051BFglLMHzzFeFoftyC6N/A==","secondarySharedKey":"T+lOu1z0B4MH9ItNitWUTRwc2WTNm7K+T3aAY2kufThWqD/xU5lb2GGnkmssP+xRLZJVqyzr/UetTl200W1fdg=="}' + string: '{"primarySharedKey":"LRrLPZYOmzgFxFwjzgccuAAmolTEgmHTma7DALuld6vRilPWqhajIxQbf0bn2IYDtJjEu+b+NMsHtkamMTXTvw==","secondarySharedKey":"cKaI75cLkmdf+G3xDL8OBdI2b2Zonux+dBXB4c5kZ9yHTfcaIM6XeTBNqcLFhupqsQ54UhgTMAJEqCAK9zIZJw=="}' headers: access-control-allow-origin: - '*' @@ -958,7 +974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:13 GMT + - Wed, 26 Jul 2023 05:18:14 GMT expires: - '-1' pragma: @@ -967,14 +983,14 @@ interactions: - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: D2ECA0996A24490D87DB8E6571FD5D2E Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:18:15Z' x-powered-by: - ASP.NET status: @@ -983,8 +999,8 @@ interactions: - request: body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "4cd87289-8e27-4dba-82fa-50c10341bb55", - "sharedKey": "wC913ZgvAmuSe4TgsPlpm+xIULFEIPSvk7h2HsVKFNiXcNFLNrpRWpBRutdwAE051BFglLMHzzFeFoftyC6N/A=="}}, + "logAnalyticsConfiguration": {"customerId": "fccf9640-9d74-4fd2-a75c-431e6be96f5a", + "sharedKey": "LRrLPZYOmzgFxFwjzgccuAAmolTEgmHTma7DALuld6vRilPWqhajIxQbf0bn2IYDtJjEu+b+NMsHtkamMTXTvw=="}}, "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": false}}' headers: @@ -1009,35 +1025,37 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1540' + - '1541' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:23 GMT + - Wed, 26 Jul 2023 05:18:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-async-operation-timeout: - PT15M x-ms-ratelimit-remaining-subscription-resource-requests: - '99' + x-msedge-ref: + - 'Ref A: 86E2D08465C64222BBB6BD791B7B1090 Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:18:15Z' x-powered-by: - ASP.NET status: @@ -1059,10 +1077,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1074,21 +1092,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:24 GMT + - Wed, 26 Jul 2023 05:18:21 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3D9FD0FE9C5349F9A2610674211625AB Ref B: CO6AA3150219011 Ref C: 2023-07-26T05:18:20Z' x-powered-by: - ASP.NET status: @@ -1110,10 +1128,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1125,21 +1143,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:27 GMT + - Wed, 26 Jul 2023 05:18:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 91C34E393E7246478A59850516F8DDDB Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:18:23Z' x-powered-by: - ASP.NET status: @@ -1161,10 +1179,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1176,21 +1194,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:30 GMT + - Wed, 26 Jul 2023 05:18:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 41492E5D065B4E37BFDAE775F71C5B82 Ref B: CO6AA3150217051 Ref C: 2023-07-26T05:18:26Z' x-powered-by: - ASP.NET status: @@ -1212,10 +1230,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1227,21 +1245,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:32 GMT + - Wed, 26 Jul 2023 05:18:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 46E1328B331B4256975027D9064DE62B Ref B: CO6AA3150219021 Ref C: 2023-07-26T05:18:29Z' x-powered-by: - ASP.NET status: @@ -1263,10 +1281,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1278,21 +1296,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:36 GMT + - Wed, 26 Jul 2023 05:18:31 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 560B069F2CBF4D5AAEEE806B243A29CA Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:18:31Z' x-powered-by: - ASP.NET status: @@ -1314,10 +1332,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1329,21 +1347,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:39 GMT + - Wed, 26 Jul 2023 05:18:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EABB387A00C84AC6B23FCBC35C93DBF8 Ref B: CO6AA3150218033 Ref C: 2023-07-26T05:18:34Z' x-powered-by: - ASP.NET status: @@ -1365,10 +1383,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1380,21 +1398,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:42 GMT + - Wed, 26 Jul 2023 05:18:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 589D2F02C83B4EBBACE83705010276A6 Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:18:37Z' x-powered-by: - ASP.NET status: @@ -1416,10 +1434,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1431,21 +1449,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:45 GMT + - Wed, 26 Jul 2023 05:18:40 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2B727B7575164F06B920F78E7202C8F1 Ref B: CO6AA3150220053 Ref C: 2023-07-26T05:18:40Z' x-powered-by: - ASP.NET status: @@ -1467,10 +1485,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1482,21 +1500,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:48 GMT + - Wed, 26 Jul 2023 05:18:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1078E6C8702E4068858649F090EEFA8F Ref B: CO6AA3150218027 Ref C: 2023-07-26T05:18:43Z' x-powered-by: - ASP.NET status: @@ -1518,10 +1536,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1533,21 +1551,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:51 GMT + - Wed, 26 Jul 2023 05:18: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 + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2F1FA0A476884884B7D91E4842A17E54 Ref B: CO6AA3150217033 Ref C: 2023-07-26T05:18:46Z' x-powered-by: - ASP.NET status: @@ -1569,10 +1587,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1584,21 +1602,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:53 GMT + - Wed, 26 Jul 2023 05:18:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AA138E5CCEAC4D6E893AB7DA68527891 Ref B: CO6AA3150217023 Ref C: 2023-07-26T05:18:48Z' x-powered-by: - ASP.NET status: @@ -1620,10 +1638,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"InProgress","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1635,21 +1653,174 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:56 GMT + - Wed, 26 Jul 2023 05:18:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 9B9F7A4B464A4AB496780DB7E5E8531A Ref B: CO6AA3150217023 Ref C: 2023-07-26T05:18:51Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 546D82F534B340D0B4D9973B6AC40B19 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:18:54Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 53E241D50D24492681F08D7BE519E2DE Ref B: CO6AA3150218027 Ref C: 2023-07-26T05:18:57Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 347887CB5A914B3DB37B6AEF06D8CD4B Ref B: CO6AA3150218027 Ref C: 2023-07-26T05:19:00Z' x-powered-by: - ASP.NET status: @@ -1671,10 +1842,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/b78e9d08-4d02-4cd5-b373-0f8c1aed601c","name":"b78e9d08-4d02-4cd5-b373-0f8c1aed601c","status":"Succeeded","startTime":"2023-07-08T07:13:23.1169575"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"Succeeded","startTime":"2023-07-26T05:18:20.0684657"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1686,21 +1857,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:59 GMT + - Wed, 26 Jul 2023 05:19: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 + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0679ADE0400B412E8937D7A337D9F4A4 Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:19:02Z' x-powered-by: - ASP.NET status: @@ -1726,7 +1897,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1734,25 +1905,25 @@ interactions: cache-control: - no-cache content-length: - - '1540' + - '1541' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:01 GMT + - Wed, 26 Jul 2023 05:19: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 + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AEC52C6A8BE8445ABAC2958175FCE95C Ref B: CO6AA3150220045 Ref C: 2023-07-26T05:19:02Z' x-powered-by: - ASP.NET status: @@ -1783,32 +1954,34 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0811852Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:04.5216079Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03e069f8-1d5f-11ee-b8f6-bce92fa43675?api-version=2022-02-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f0dfb360-2b73-11ee-a873-bce92fa43675?api-version=2022-02-01-preview cache-control: - no-cache content-length: - - '1380' + - '1378' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:13 GMT + - Wed, 26 Jul 2023 05:19:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 02D5A6CE07AD4EC8B01D55C234645BA0 Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:19:04Z' status: code: 201 message: Created @@ -1829,7 +2002,7 @@ interactions: - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03e069f8-1d5f-11ee-b8f6-bce92fa43675?api-version=2022-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f0dfb360-2b73-11ee-a873-bce92fa43675?api-version=2022-02-01-preview response: body: string: '{"status":"Succeeded"}' @@ -1837,7 +2010,7 @@ interactions: api-supported-versions: - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-03e069f8-1d5f-11ee-b8f6-bce92fa43675?api-version=2022-02-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f0dfb360-2b73-11ee-a873-bce92fa43675?api-version=2022-02-01-preview cache-control: - no-cache content-length: @@ -1845,21 +2018,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:14 GMT + - Wed, 26 Jul 2023 05:19:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B56FEAD254D442E4979567F2F0023D6D Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:19:12Z' status: code: 200 message: OK @@ -1883,32 +2054,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0811852Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:04.5216079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview cache-control: - no-cache content-length: - - '1381' + - '1379' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:14 GMT + - Wed, 26 Jul 2023 05:19:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C921BC8C939E43948620794BF0C21BEF Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:19:12Z' status: code: 200 message: OK @@ -1932,32 +2101,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0811852Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:04.5216079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview cache-control: - no-cache content-length: - - '1381' + - '1379' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:15 GMT + - Wed, 26 Jul 2023 05:19:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3C1024ABD18B447CB993B74B1A25F1F7 Ref B: CO6AA3150217033 Ref C: 2023-07-26T05:19:13Z' status: code: 200 message: OK @@ -1983,7 +2150,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview response: body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"RjdfeoTxKBxsazLuQQJe5MDKQpv6osRoh/21ynTNrd+ACRCRJDUn"},{"name":"password2","value":"XK/gvdhYnoz0hkGGzAzJYBDgqt+kt2byEpj6HF5x8g+ACRAQJqcG"}]}' + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"ZDCbGv2gjdgvsRQVKQkFGunFf5ePsb15Xx2PEyPYND+ACRC3uMxK"},{"name":"password2","value":"k2GvhPwNuVLNcfUBUKnSmfgmdmo2pJgEnkfpYDJpan+ACRA6uLck"}]}' headers: api-supported-versions: - 2022-02-01-preview @@ -1994,23 +2161,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:16 GMT + - Wed, 26 Jul 2023 05:19:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 27CBFA20939F458F9EAF80E4346DE8CB Ref B: CO6AA3150218035 Ref C: 2023-07-26T05:19:13Z' status: code: 200 message: OK @@ -2127,17 +2292,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:16 GMT + - Wed, 26 Jul 2023 05:19:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5601D5E4F9474560BEE200CCB27309DA Ref B: CO6AA3150217045 Ref C: 2023-07-26T05:19:14Z' status: code: 200 message: OK @@ -2162,7 +2329,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -2170,25 +2337,25 @@ interactions: cache-control: - no-cache content-length: - - '1540' + - '1541' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:17 GMT + - Wed, 26 Jul 2023 05:19:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 36A2049109DE4812980F97AFB8C952DC Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:19:14Z' x-powered-by: - ASP.NET status: @@ -2302,24 +2469,24 @@ interactions: headers: cache-control: - no-cache - connection: - - close content-length: - '11739' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:18 GMT + - Wed, 26 Jul 2023 05:19:14 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7BC250A2F65043A687649BD2D010056A Ref B: CO6AA3150219019 Ref C: 2023-07-26T05:19:14Z' status: code: 200 message: OK @@ -2344,7 +2511,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -2352,25 +2519,25 @@ interactions: cache-control: - no-cache content-length: - - '1540' + - '1541' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:20 GMT + - Wed, 26 Jul 2023 05:19:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DB6AA2DCB2E44FF996C69DE36AF16A30 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:19:14Z' x-powered-by: - ASP.NET status: @@ -2403,15 +2570,19 @@ interactions: content-length: - '0' date: - - Sat, 08 Jul 2023 07:14:21 GMT + - Wed, 26 Jul 2023 05:19:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 329E24CC3E8E49678C33EA923F87F572 Ref B: CO6AA3150217051 Ref C: 2023-07-26T05:19:15Z' status: code: 204 message: No Content @@ -2436,7 +2607,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:16.1074422","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:16.1074422"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-ec4abd84.westeurope.azurecontainerapps.io","staticIp":"20.101.188.107","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cd87289-8e27-4dba-82fa-50c10341bb55","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -2444,25 +2615,25 @@ interactions: cache-control: - no-cache content-length: - - '1540' + - '1541' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:21 GMT + - Wed, 26 Jul 2023 05:19:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0BF1A57C832741088225936EE0D15980 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:15Z' x-powered-by: - ASP.NET status: @@ -2499,17 +2670,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:21 GMT + - Wed, 26 Jul 2023 05:19:16 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: EB5B5936B2844026BFA0493B091F8523 Ref B: CO6AA3150219047 Ref C: 2023-07-26T05:19:17Z' status: code: 404 message: Not Found @@ -2533,26 +2708,28 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2g77p3nurkfjlsjzrkvxkrnxzjie3ecuq5z27v67wn7kn2bp7yzzyx7opqwakn6t/providers/Microsoft.ContainerRegistry/registries/containerappsnfatmtjjrri","name":"containerappsnfatmtjjrri","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T06:22:59.1080657Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T06:22:59.1080657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdksh6adyzsdtsskn73xjpztc7ysyosa4zupycqyveoabwax62cwrjjnvtscg76ndb/providers/Microsoft.ContainerRegistry/registries/containerapptcr7ww3ydgnx","name":"containerapptcr7ww3ydgnx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:37:34.4109563Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:37:34.4109563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cmn735q7w2nwwebppb5clx7mirv4xiylykhjye674ol2n3ijchndft46d3fsuw2r/providers/Microsoft.ContainerRegistry/registries/containerappimdj6e7r2gye","name":"containerappimdj6e7r2gye","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:53:07.4694556Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:53:07.4694556Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv4b4fipvuwf57kz3fxssmj7tpfpzncvupsohhfjr55gmfxvww3272nz4kbqvczmbn/providers/Microsoft.ContainerRegistry/registries/containerappq73aloxzz2f4","name":"containerappq73aloxzz2f4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:24.1395549Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:24.1395549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeligh3rsqvhhs3g3u4omisskxfsz7mofruquyma4xt26fgbbxxfst7j6ozmafmfjp/providers/Microsoft.ContainerRegistry/registries/containerappe26fbem5qobi","name":"containerappe26fbem5qobi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:11:09.2869299Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:11:09.2869299Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn5isfsnaihp2s342ghm2p3kpf45eg4fau5rqhhonew7c6mqfrzgn6ojvsjpodwpby/providers/Microsoft.ContainerRegistry/registries/containerapppsi7catvaru2","name":"containerapppsi7catvaru2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpqo2bynzrtzy7hehcnoopzcgigliypgumob5rrw74vfmrqxf3v7ucpmdqwfz4rd5j/providers/Microsoft.ContainerRegistry/registries/containerappr3s6fbx6lppt","name":"containerappr3s6fbx6lppt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn37hfrmloz6jtk2snhwvzqaiemzxxmjtsqkgngpw3kpqzd4pffzxg3fmwlj7pkbaq/providers/Microsoft.ContainerRegistry/registries/containerappjnakgsbs3bbp","name":"containerappjnakgsbs3bbp","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' headers: cache-control: - no-cache content-length: - - '8430' + - '5906' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:22 GMT + - Wed, 26 Jul 2023 05:19:17 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 76E84978924743A9BB92717FDE2D29A7 Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:19:17Z' status: code: 200 message: OK @@ -2577,32 +2754,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:06.0811852Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:13.5494881+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:04.5216079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - '2022-12-01' cache-control: - no-cache content-length: - - '1381' + - '1379' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:23 GMT + - Wed, 26 Jul 2023 05:19:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E8699D6C82E9485AB467D27FFC2655AB Ref B: CO6AA3150220031 Ref C: 2023-07-26T05:19:17Z' status: code: 200 message: OK @@ -2719,17 +2894,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:24 GMT + - Wed, 26 Jul 2023 05:19:17 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D70B24F25B2942C88D8DF9828A980F32 Ref B: CO6AA3150219021 Ref C: 2023-07-26T05:19:17Z' status: code: 200 message: OK @@ -2760,15 +2937,19 @@ interactions: content-length: - '0' date: - - Sat, 08 Jul 2023 07:14:24 GMT + - Wed, 26 Jul 2023 05:19:17 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8573F7FC6398499382EDAA1E142AF1E5 Ref B: CO6AA3150217039 Ref C: 2023-07-26T05:19:18Z' status: code: 204 message: No Content @@ -2795,166 +2976,166 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview response: body: - string: '{"uploadUrl":"https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/source/202307080000/c6f21d4f-7873-47ce-a6fe-d4e46791327b.tar.gz?sv=2021-12-02&se=2023-07-08T08%3A14%3A26Z&sr=b&sp=cw&sig=eSd8VBg%2BQI3fjHxg80vWPGCbDEgaBXCC544q06XjP9w%3D","relativePath":"source/202307080000/c6f21d4f-7873-47ce-a6fe-d4e46791327b.tar.gz"}' + string: '{"uploadUrl":"https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/source/202307260000/e1037e99-bbdb-4ae0-9637-13d4afb1b8c8.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A18Z&sr=b&sp=cw&sig=OVyZq2PRyuV647WR1WN3zQQu3GVw5QhDaD6ZfPWUikc%3D","relativePath":"source/202307260000/e1037e99-bbdb-4ae0-9637-13d4afb1b8c8.tar.gz"}' headers: cache-control: - no-cache content-length: - - '354' + - '351' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:25 GMT + - Wed, 26 Jul 2023 05:19:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: E8476981B35A4CF5900CEBBA38599665 Ref B: CO6AA3150218011 Ref C: 2023-07-26T05:19:18Z' status: code: 200 message: OK - request: body: !!binary | - H4sICNAMqWQC/2J1aWxkX2FyY2hpdmVfMzMyZGI1NzhlZTJlNDY5YzkxOTkzODgwNzNiNWI0NzIu - dGFyAO09+XcUx5lkN/sL+3jPf0Jl/DYRfkzPjE4sJBkZcFDCoZVkO17HcXpmSlJDT/e4u0dC9nOc - t1nvvj1estk4ednndZzExgZjsA3mBmN8m/uQECCBQBLCoAuBBOKQa7+q6p7pOSTAgTEx9dkf0+qu - +r6vru+orq6SfJJvZqW8ZC6Ww9iYdFvAz2G8X78/Ly9xTe8HAvkFgUloyaQsQMy0ZAPY3+pC/pVA - bhGKWEoElwYKpxf67y+Yfn+uVFSUP72wYPIkAd988GWBBx0PRUVF44//tOui3CL/JFQgxv9tB0no - f6H/hf6/a0GORk1sWYpWZ0qzcQNW9WgEa5a0yNS1Wzn+CwsLxx3/uXm5KeM/vyg3bxLyi/F/2+GZ - KZMR8szGlqyoODzHMHTD9BQjy4jhaezRPL2uDnoH3GNJ+Z15tKckbjEKtXJMteCep0Kr1Y2IbCm6 - 5pkWTzBfCRm6qddaUrkZXYCtWbqBaepHZUOj9HnCZ+kP/AP/i7Ep7L8Y/8L+C8iW/b+VNv+m7H9u - Ucr4z83PLxT2P3v2/+sw8ty9KFdVvRGH5+qmRf0Oz30eYfyF/Rf2X9h/AdmASrkOm7d5Evim538D - /twCMf8r9L9of6H/BWRB/7N5Pylk1lsRNevxX6CgMHX+N7egMCDiv2zA4OZtM6PQB6ZMnhnRw1hF - rCvMp5dwyw79HlFw42zZkh/31CiWij1PoFLkYQk9M1i4NmVySX0AhVTZNEs9Fl5iecOyVocNTxnv - WSW++kAZTZSbMVG5hjBNh/RQKGYYOIwa6xUVo6ihh7BpQuSImvSYgQz8VAybFiWXW0a5zlRqUQ4T - Vqqu1xur+POK8NQpk23RS6JlTnQKf5iWoWt1ZXY6VDG7uMRn30MlIaBTNpNTi1Mq8bHbNjEfpWaX - N6/M9b4E0WwgVh4tpcOyulGORqnwlo6sehxn78qXYI+1BgWuGLGwYkZVuclEYXteHimJcBvJQT1m - MYK80qx62YrXnAT8mZRxKRyuNZDBLbGboVmvx9Sw9j0LBYGqJgcpT+AIAkRVvQn+gJKoSogJYEpx - qTmHCguFZA1ax4ypFojqyE+LbmLNVCylAScVodbQIwgvCeEoI0grCGthFDOxYUqc6EPAXdVDsgoy - BGNsemKaLdrNVWawCdkzXEn5yqsrF8ypmbWwas6TcxY8UlG1cMH8OQtqMpNokA2FM9Yn5Msll6Ek - UBegVuJMofbiDSP8P+H/Cf9PwJ3q/8FPlv2/vPzU8Z8XAJdQ+H9ZKT61UZnm7aX5DSHw7iZOIFXJ - T+sG60TxtNVNpoUj0mxFrtN001JC9NGUyZocwWZUDmFUA8bxURwsj0Zz/bl5/gKJ5Y+7bI9XQTrw - CvAsOVSPc2bHDO40lCL/NDRPDzl/JSVz7ksLdA1PQwv0agtEhFR0JcPUJ2zKFSCRgcs1SwFfBFzP - php9Mdbsp9FYEFwc7qC63GBUjKh8tktMEz6T8CjtPGD/oeQPoLjbiJ5BddiaQT2PGYg5jCk5grqu - oiSfFZWWoe9wQlKFuSCmqguNOZGo1ZSTcGtnJFEylAbZwuBryGFdU5tQBX2Ng42ShOxl6EmV3ZuR - QYREspxMOXnGqYlsrmJTsClDFcdZOI8yFbhBV8JoofZ9bOWMT9NVGag8BG6jYjVJs6hjq1kPSHD7 - gQfQXMuKztI1GkBINQb0p4owpg2qpIpg/zwrlLzw/4T+F/6fgHH9vwotjJd8XfN//vxAIG3+L7dI - +H9fy/wf6wo3Mv83V49gRLMm5gDDSkPS/F4IDDOd37MnohJThPYEkTffU/YoVkNAyZ4htKfs5mHZ - cCa6SmRUb+DaUk89GH6z2OcL6yFTisQdUsjtk82ohi1fiC43KQvGFDVMHVHwMenMi4kaFaselVdX - Sgvm1CDqupb45DLJnifzgdRld+2KE2H/hf0X9l/Y/4T9z/r8j78wkD7/kyfsf7bs/y2dArqJeZ6k - +ZaE2zHxfMt4cx6J/BPOeSSS5WTKma05jztnnkLYf2H/hf2/2+1/JVWroabbNANw3e8/CvLT7L9f - vP/5euJ/uyvcyAyAnRRV6mDsmuxpAIjyy2amJbfDe7Ys5WGTruBQTDZ5QJdU8FUufImPqVj4eya3 - 80A6ykhLd+LKCRH/C/sv7L+Ab579v9UzANeN/3NT5//zCvz5wv7fTfG/2+34ajMAbgoTzgG4E+Zk - zp3ttQ9f3yyAsP/C/gv7f7fb/+p62cDh2/UZ6M1//wnjv1B8/yn0v2h/of8FZE3/PzlPbtJj1q2e - Br5O/Jef7y9M3f8vLyDmf7MV/5V8Z/bCWTWPVc5BtNXZZ5rwi1RZqyv1YM3D7oB5cJZnRbAloxD0 - GBNbpZ6YVeud7kG+pKc0Biz1NCi4MaoblgeF6HptDVI3KmGrvjSMG5QQ9rI/piFFUyxFVr1mSFZB - D0l+FzWLTh9nmE9G3rTossTHE9s5VUVbDEGiWuoxrSYVm/UYgyB8JdnPfKoS9AV13TItQ476wopp - +UKmmbglRRQNhoHpEmVigjQ3nbvmmWQz6pWjUayFvQ3YMBVdK/XQDxFumFxa6MwT3Qj1Ep/dWCVB - PdwUX3vH7Lv7W1hNji/Wg8ugbCD+48VLojKQNiPODQtiXBXTDyBdN1Wlrt5CwTpvYz0UGwV1A+h7 - g7pl6RH4a4nXrIcAvRFFgt48T1ly+OxeKEi7hqxoiWWCSQnlZBG9QQNEs2vAwHKph1/TNwmlHr6M - xVOW3jPkTLSDMZBVS2HAy2p4kNUUBZI8jQeFofN5g6b9mEqtqnLUxK4nslFHx4NkE0qkoB+Pemkx - DV2NM6qORenQwOFZfGh40gV0gOXnjYLDpZ5aWY1TVeUg7UE1TCraMkod35KrLDO5EhOoZC6xVwnR - fCU+miRTdfl4XWR65GrOlNKj+AXtUF5Fg26PvbUqXoIWgeZVapu8tm7wBrHViPH4osfUFB60A1NK - 3jpDb/QGxstojzZXZi902MhEydO6npeNVvubdWPx9TrgXLagVZ5IINBAd4C89qyXp8y++MpCl/hi - asZOwxfXTnSvxAcCxz+wT9JT19UTJRG4hWBcQWHopcdJHc2gdWZWgcbExoOgFd3TcCU+mjMuABfO - /qsW7AE2HKK2jrP0KLIfsBqOxGAYJ0l1I+rtuyE92jQDUQ2VwZjBLWjQr9Rq7vot8XFBEyUyQ4YS - tZBphBwzuOipGDaauA3k18z4LTKZMmDJy8bNnGJDF7lNaDCmhVV8g8QW2eZz0UT2zU2DU5kpN8qK - hXjLVuMQVX7lZpMWyvFUs5SmZxrbNkIB/7YYMd05ldpI2zZCh6M+z93r/4v4X8T/Iv4X8X+G+J8G - G9mI/wOFeanrvwoCfrH/U7bif999qBLCO/DRTQx+uh6K0U1t7L2GLHRjn135QqpCvXhTCWMfs/yK - VuelcSTYf6XW3jpoymS+qRBd72UiGnzpWq1SFzP4Rjl0TZihLwIzTpeFcf+BbafDaDQhk0oVQo30 - uy7TxJYpoft81BWQJXd8yN+ssrjUy95EFyONbj2kste0zGeTIXzVihH/QI3dbgTnDrJjeXExYj+Q - RnW+bJM5SQhmdKMY3UtfZ4RCzkMpaGneqKFEZKMpOV1tbS2jHZRDiyFIgfJ4nUeBYCEO5fKn3K2M - P5leGJATxKk3H1VUqC7JcewlmX4aj6ch90OzHoLtskSiWy+Jy/19xpUa/i5GgegSZOqqEkb34gL6 - H88lJU8LuLPxW+PmZHnjkwh2RufvYuRHUm6BgSNIKmI/Rl1QzvFPQ/x/yV8w1SHDo1aoMrrZlJev - J+T0anXWX5+G7hEAGqwGWHhaj+ncRjFStHpsKFZcINvpZ5mjOt3WSoc+JAdBfAgB7BrkpfLzPkUn - uIC63/8PMzJ0yUbwktO5FvqjS2ZkbRNs4f8J/0/4f8L/4/7fI2AXw8xS29FzJd3ETlb/sjdC113/ - X5jy/j+XZhD+X7be/4w3J+RtiHeHpOkh+3bGqZ0bIeaNaXrQMmImODFpNF3PMtEXI1bYfzH+hf0X - cCvt/5P0BXtFhL6RNG/9R4DXs/+BwoLU9R+BQIGw/1my/zP5+v7UV1BTJs+8/lL+mXI4XCPXzcVq - FCLj+6aN/5VAPJUpjLiw/8L+C/sv4M6y/9V0x/rbsQXA9ey/P33/5wJ6/pOw/9mx//aHaPzlH/2w - 334P6JkhzmIU9l/Yf2H/BXxj7b+h1xly5NZv+nfj9j/gL0qN/yH8F99/ZAUaZAOxDXPZ1+w8xHcO - epJmGVi28IP8cY5s1Jn8BAKfD5WHw8jEBv2Ow3TOt4qvdZXoa3eWSaq200iQIbFRQA6nQ5nL0Sgw - dpIzXjlxLrPs5SH8yKe5NTWVzhlgKKpEMX1vDrzoIWDfoUcszUmc2SRVmK4TmnKmJk4EowkfNvEc - 5/SpuTJdZmLkePgpKJ6p9sf8wJ4emRXmZ16judU11ahBVmMYKSbK86Ow3GRK6DE9hiJyE2qUNbZo - JVRPzzTja1noWpeooYdjbFkqMkNYkw1FN6exhTbOuhp5sSxFTHstDV1K4603LecULFvYuXAnJ76k - wblJCVThsGLwda8sgf2smq2UeUhR43VtP6gCv07R6pJvlseset1QnpbjZPij+XI0rc3o/aoYTyXU - p/D/hP8n/D8Bf83+XxQblnI7DwH/Cvs/5OUXiP0fhP4X7S/0v4As6X9Vjmmh+mp+Vq4pLTJ1LTvx - f2Fu6vgvyM0T7/+zAiwo9kCUWktjRU+xsyudJ/WNf+IRPAzpkQiEzQvkCIb7nkr+0YZnWjwB70sP - GnqjiQ1IQj/fTDx1na38iH20summD0kyH89MmbnC+vhH888maId1C+JoiFDnY9OkcWsad9dR1g8b - KiXphOLsvOl63bSKi0AVzqC3k+4WgGGyeTocPRUV1WjOkqgB3CaqIkjmpPr6ailF9Nl6aDHjO67U - dooblZg/tSv1mepQPY7gZ6EGn7FngeZCJT5b7PxVqRvWsy7abLNEs75cVemT9HaLmbi6ep59O75h - olMej6KYju5ydeNGRQuDsHSGg54SyZvdY38J7FSErOlaU0SPpSdzSUAZZGrozN0pqd/k++/PK3SV - 1DRZESFtfn5egd9dlmzvACn8P+H/Cf/v7oW0hX0hk36CecvH/4Tvf/L8aec/BMT5T1mBEtt3Q9Xh - xaWexOpNcCskuCVB3/DYu22U2LFC0/cNPRZ1tvGoYfsePWSAx9CoG4vLwPkqlPwlvtT7dnJ6rjX1 - ZMqwRn9KfPEbdoKKCDWnivUwXZRqxpOl3LYTP2yyXT8MbJkV4bKC/MJwoCCc6w1On36/Nz8UzPVO - l3Pv9xYE/SEsF+HcQvn+El9yHpsQd3Rm83c9XPSF1WXzFC22pMSX+WFSTuo924dS04Ml02+yCvSl - 1iC7W2HhSFKVVsqhxeC5VuFabGAthFGFFlJjYexun0cUMyar1VYsrOhS+dMxA0uznNdvplSj6yr8 - y0Q1PegRZxeVgBQoknKdXcigVl2s6WYodmcQ39ncNSD8P+H/Cf/v7oXGxkZD1y3f7eRx8+9//EX5 - AfH+R+h/0f5C/wvIhv6n+xffOfo/UJAn9L/Q/6L9hf4XkDX97+xffzvG/0Tf/+X5c1Pnf3PF+b/Z - AXbUQ9p2ePnOFnT0WGAcVmSUE1E0r72fXVHh9OiSqTxXIn8yhUJGgb/QpGQS6RI75xlYlelGhiwh - pe9sgWdvmMf379PD9n59Edmog0TOFnvOPnliDAv7L8a/sP8C/hL7Xys30ANAJPjntoz/8e1/IDe/ - MPX8pzx/UZ6w/9mBb036m0kI0V80adk9kyZ9F+7dcw//u/7bkybtgescuAdJJs2cxO9T+Pk9Gcn9 - HeDf3yzm5ORMfWvVys1vrVy5cdXKNzm++cbGVSuWb1z5xrKNK5e/vnHlstc3vrX89fWrKC57DXCp - C19b/y8/f+4/244eIUcOtZDDDJs5tjh4kGPzQdLK8EAct27aSE51dTLs7jxJuk+eIF0njpOu48dI - 57E2wKOks+0I6Tx6mJw82kpOHjkE2JKEbyx9ZVtPdxcZG71IrjEcIdcuURwmVy8CjlwAPM/wyvAQ - 4DmOFwbJ0eb95MtrV8nY1Stk7MplMnZ5lNO4ZOcbhjwXIO35QcABcnmoPw03r13D+F+7fIkMde4m - PTv+SHp2/omc2vEHcurzP5Dj+zaT9iOHk+vHrpv3tmxi/L+k/K8C/ysO/xGQ3ZabypwkQ0KOK3C9 - eV2Cf8/OP5M9v59F9r74fbL7f8sBHyR73/0PVjdjTt2MJuqmrbWF83fVwUDvGTJw9gsycOY06f+i - h/Sf7ib9Pd2k71QXOXW8PS4H/x0E/u8C/26ou8vk9K6lZN+LPyD7X64kB1/9EcP9m15gsnF0t9Ew - aT9M+V9L4j/Ye5aMDJ1jMgyf6wcZTiVk6OnideHCzevXbus51c3ynt69FMpeQZpf+zHZ/4cFZN9L - PyT71v3Sxd+RgdcD4z92zW4DLsNgXy8ZOc/5j5wbIP1nemwZuBy0Pdy4ZcM6zh/a74s9r5P9L80j - La//hPP/v3mMP60bjqNkeLAP6vIk6e0+QfZ89pHNP1EHFy+cBxnOJtrB3RaAvD8ncMuG9dt6ek6R - sWtXyBd7lzG+Lct+ytpg30vzyb71v+J928bhwX7g30l6QYa9n38M/McSdZA6Fmh92f3RGVPXLroQ - /t66cYPN/yrwXw7ln08Oufmv+xXv21dt/tCmfT2drA72fP4JuXTxoo0j5NLIMLk0fIFcpAj1cPHC - ELl4foi1x8jQYEZc887bnP/YVXJm/wpy8E8Pk9YVteTgnx8hB/5YTfZv+B9WNwyhbMMwbvpOdzIZ - 9gL/c+cGyblBigMcB/rJuf5+MtjfxxH6A8ezrG8OuJD+/e7qd7ad7ulh9Xhm/5vkwMv/SFqXh8hB - 4H0A6mD/hv9mdcOR8h9I4n/kMOiGw63kcKuDh2w9AdjSQlrj2JwRl77ySpz/2QOrSMsrj5EjKxeR - lqX/RJpf+RE5AOOP1g1DkGEY6qzvdBeTYe+OT8gpGLt7du8mh20Z3P3RPS7GnL5h6ypaT10nT5KV - K1ZsO326h0BG0kv5//lRcuRNhbS8+hhphusDG1+w+xjvZ8PQnn0wjiju2fEp4+9gdxy7OHa5kN7v - 6krDVStXAv/T5MsvvyS9B98mh179MTm6KkJaX/sJyPA4ObD5dy7+Y9CXgD+M5z4Yz3t2fEZOnTqV - hqtXryb79+9PwtUr3yDNe3cxndnW2kzaQI//5je/eVGSpHsT/N8hh155nBxduZjJQdvi4Kbfsrqh - mODfw2RoPbgf6n4Xw50gy87POW7asD5+vfPzT8nOzz4luz/9kFzoP8Ntmm0b1q5d+2/U9lP+FPpb - 1pAjrwdJ+9sG/IbI4dd+Spo3/57JxjCJP5dhGMYWRd4mXfG+SXWEoyeorurt7gD+ZxN2FXD9+vVJ - /PuaV5PWV39C2lbp5PDSn8L1E1D+3yX4A45ccPPvYfKMuPpEkgxxOU4yOYYHepPs18aNG1PKv5Yc - XYbJ8dWN5Pi7Tez38EfLSAK+BN1ynun0NP6sT0wsw/Bgb5IN3bxlczL/5nfJkddkcuwtg/0eXvok - ad70+yT+IxcukD7K/0wqf94efV90J+QAe+foSs6/L8mObt26NaX860jb8jpW7rY3FHIUrlu2/h9x - A9WtfWd7eB0A0vZItAkfF1D+MZBjjNWDzb+3m/G/CvwvA14F/lffe++99Pp/PUyOvxMD3rXsumXL - i2n8Hd6M/zDn33/2dBpyeUCWHs7/Qkr9v//+tiT+Ay3rSdsyp/yLWF1kKj+jfYbjCPQHihn5n6Uy - 0jZh9cF0t1P/o9D/tm/fnsz/EPBfrpCO1U2kfcVi1gYtW18itwrGQC9fBRs6OjpKzp8/Tz744IMM - 5ef8j72pgQygBz9YmrH8N4K0fXqhDc5APzwL/fE82I7L4MdcgD7c29tLPvzwQ8r/bxPl30Da31DJ - 8VUGk+HE2p+Rtp1rvxJ/ypvypNh14hg5AbHAGbAz/WCbu0Dv7927lxw9evQ5IPktd/23Q/mPrVBJ - O7RD+/JFafV/I/xpmR3eFD94fxuBvk62bdtGNm3axK7b2tq2Ud5u/hd721kb0HqgstDfjoMf3Tz/ - 05w//aX4/ntbme68dOkSOdnZSTo7O+O83fwzwUTPxoNr0M8cvHLlCvn444/JRfDRTpw4kcabItwj - AwMDGbGjo+Pm+znYKYqU98jICO1nlC+1zWm8r4f79u177mb507q+Cn4P5U37244dO6j/cdO8KTY3 - Nz83CP7lePWTCSnPs2fPkh7w606Cj9Xe3j4h7697LoPOU9xjz1U48xQzv52ervnA/l/s3b3r+b27 - dtq44/k9Oyl+/vy2rVs27tm189juHZ8f2/XZJ8d2fvLRsV0ff9i28+PtbTs/2t627u1V24cG+sjw - 6UNk6OQOMnByHzkLMeEZiEvPdEPf6DzBfFOqn6lvwGJ9iE+dWLmjtbljCOq2bU0M4hKIy1ZoSbFo - H8RZND+1RYM09qL2AegPwXikdDqOHOoYgniwfe0ScgBii33LI8BrlFwBXtQvOQNpqb88CjHMuf5e - RoPGa/QZ9dVOtB3pGAL92b7uGXIQ/PJ9b2gsHhqFGI76Nt0nO8gVSm/0ErkMsdBloDMKdokhyHTs - SGvH+aEhcnzDc+DbQ3z75lMsnqB2iNrooxAvMJ8Yxkk39JkuNpfSEUfwJTvOg59xYtMvSOsymRxc - FYMxdo1cvnSR+TtHwK9tb2tj+mIIYqKhQY40JuoHXb9r584OanNObv5Xcnh5mDS/tYT5k5dBJ1Gf - 4VDzATuOOUQ+2P4+82k//XA7Od3ZQXrBfrzw2xeqqd3o3Prv5OgKsItvP8PG2WUoL/U9aJ2dgxjL - 8Tkcv3MU6p6255o1a+bQ/F3v/Rdpf+spcnjt82ys0jqjtoLlB4z7b7bfMgr9gLbxuvXrWP7u935J - 2lfqpHX1z+38l1n+IWgn2r9sP4j5Pr08/xj0k7FNmzby/Nt+RY6tAv5r/jmuK0dAp49Cm41CjHzR - jl+ZXwHtdmX0Inu2ZcsWlv/Utl+T42/FSPvmX8f5j2f7TkHd0diUxj67du2axezu3pXk1Pu/Jh0f - /Wnc/I7d2rt3DwH9Qw4cOPAy1RNUr1A9TpFeT6T/qZ0/DLEp6N2XM+kcoFnu0ErF4eFhpr9aW1tf - vpP0lHj/J97/ifd/Au6c93+L7rD9nwrE/k9C/4v2F/pfQLb0P1v+uci8PeN/wvWf+anrP3ILC8X6 - z6wAPf/bl8Xzv4HZLT4C3N4q+lEDui9q0mMG+oHcIPPzS4F4mO4QLca5sP9i/Av7LyAVQvm5RUFc - WJAXDAXya4tC8nQZ5wfz86YH/UF/QeD+JxNbmdwu+w/BXiB1/8eigDj/KStwb3X6UQQhqBM9ojyN - 4wc6UFsMLoKhoXq9kR1z4CThFjeMg7G6xPkPzGDTlHyXGsS3qUExk54VQU18olNxK6+oYU5IidAt - G5mLUCubFrZJ14FzwAz9Q1UL56NIyEhxRPimj7Y/Ulwo+VF5NQqCSzNl8qMLq344u6IK+eRodMrk - OT+qXFg9B033xy/z8/OuT9gML45TpcK6yJpGaMrkWQsrH0OPe8bZTMszDXkkzxNTJlc9vABxisiA - pOA2wQPfeLlsshKSEuw8lJ9P8iTR4vU3LnfkDaEqzD08r84qwmeXwi43JwCFs7dgTKJu37s5+k4m - X7SYni8RjdKtH0vZposJrjQDMK1VNFlNbShWdK+31tAjpXFibspQKXMW1FQ9VrmwYkEN1D2XllZ1 - mpxhVfU8IVS9AAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECvmHw/9ciRBoA + H4sICNeswGQC/2J1aWxkX2FyY2hpdmVfZDliN2U4NTJhMzdlNDRlY2E2ODk3NTM4NTYxODc1Nzcu + dGFyAO09+XcUx5lkN/sL+3jPf0Jl/DYRfkzPIWmEhSQjAw5KOLSSbMfrOE7PTElq6Oked/dIyH6O + 8zbr3bfHSzYbJy/7vI6T2NhgDLbB3GCMb3MfEgIkEEhCGHQhkEAccu1XVd1zS4ADY2Lqsz+m1V31 + fV9d31FdXSV5JM/MSnnJXCyHsTHptoCXw3i/Xm9+fuKa3vf5Cgp9k9CSSTmAmGnJBrC/1YX8KwF/ + EYpYSgSX+gLTA977C6ff75eKigqmBwonTxLwzQdPDnjQ8VBUVDT++M+4LvIXeSehQjH+bztIQv8L + /S/0/10LcjRqYstStDpTmo0bsKpHI1izpEWmrt3K8R8IBMYd//58f9r4Lyjy509CXjH+bzs8M2Uy + Qq7Z2JIVFYfnGIZumK5iZBkxPI09mqfX1UHvgHssKb8zj/aUxC1GoVaOqRbcc1VotboRkS1F11zT + 4gnmKyFDN/VaSyo3owuwNUs3ME39qGxolD5P+Cz9gX/gfzE2hf0X41/YfwG5sv+30ubflP33F6WN + f39BQUDY/9zZ/6/DyHP3olxV9UYcnqubFvU7XPe5hPEX9l/Yf2H/BeQCKuU6bN7mSeCbnv/1ef2F + Yv5X6H/R/kL/C8iB/mfzflLIrLcias7jP19hIH3+118Y8In4LxcwuHnbzCj0gSmTZ0b0MFYR6wrz + 6SXcskO/RxTcOFu25MddNYqlYtcTqBS5WELXDBauTZlcUu9DIVU2zVKXhZdY7rCs1WHDVcZ7Vomn + 3ldGE/mzJirXEKbpkB4KxQwDh1FjvaJiFDX0EDZNiBxRkx4zkIGfimHTouT8ZZTrTKUW5TFhpep6 + vbGKP68IT50y2Ra9JFrmRKfwh2kZulZXZqdDFbOLSzz2PVQSAjplMzm1OKUSD7ttE/NQanZ588uS + 3pcgmg3EyqeldFhWN8rRKBXe0pFVj+Psk/Il2GOtQYErRiysmFFVbjJR2J6XR0oi3EZyUI9ZjCCv + NKtetuI1JwF/JmVcCodrDWRIljiZoVmvx9Sw9j0LBYGqJgcpT+AIAkRVvQn+gJKoSogJYEpxqTmH + CguFZA1ax4ypFojqyE+LbmLNVCylAacUodbQIwgvCeEoI0grCGthFDOxYUqc6EPAXdVDsgoyBGNs + emKaLdrNVWawCdkzXCn5yqsrF8ypmbWwas6TcxY8UlG1cMH8OQtqspNokA2FM9Yn5Msll6EkUBeg + VuJMofbiDSP8P+H/Cf9PwJ3q/8FPjv2//IL08Z/vA5dQ+H85KT61Udnm7aX5DSHw7iZOIFXJT+sG + 60TxtNVNpoUj0mxFrtN001JC9NGUyZocwWZUDmFUA8bxURwsj0b9Xn++t1Bi+eMu2+NVkA68AjxL + DtXjvNkxgzsNpcg7Dc3TQ85fKcmc+9ICXcPT0AK92gIRIRVdyTD1CZtyBUhk4HLNUsAXAdezqUZf + jDX7aTQWBBeHO6hJbjAqRlQ+2yWmCZ9JeJR2HrD/UPIHUNxtRM+gOmzNoJ7HDMQcxrQcQV1XUYrP + ikrL0Hc4IanCXBBT1YXGnEjUaspLuLUzUigZSoNsYfA15LCuqU2ogr7GwUZJQvYy9KTK7s3IIkIi + WV62nDzj1ES2pGJTsClDFcdZOI+yFbhBV8JoofZ9bOWNTzOpMlB5CNxGxWqSZlHHVrMekOD2Aw+g + uZYVnaVrNICQagzoTxVhTBtUSRfB/nlWKHnh/wn9L/w/AeP6fxVaGC/5uub/vAU+X8b8n79I+H9f + y/wf6wo3Mv83V49gRLMm5gDDSkPK/F4IDDOd37MnohJThPYEkbvAVfYoVkNAyZ4htKfs5mHZcCa6 + SmRUb+DaUlc9GH6z2OMJ6yFTisQdUsjtkc2ohi1PiC43KQvGFDVMHVHwMenMi4kaFaselVdXSgvm + 1CDqupZ45DLJnifzgNRld+2KE2H/hf0X9l/Y/4T9z/n8jzfgy5z/yRf2P1f2/5ZOAd3EPE/KfEvC + 7Zh4vmW8OY9E/gnnPBLJ8rLlzNWcx50zTyHsv7D/wv7f7fa/kqrVUNNtmgG47vcfhQUZ9t8r3v98 + PfG/3RVuZAbATooqdTB2TfY0AET5ZTMzktvhPVuW8rBJV3AoJps8oEsq+CoXvsTHVCz8PZPbeSAd + ZaSlO3HlhIj/hf0X9l/AN8/+3+oZgOvG//70+f/8Qm+BsP93U/yf7HZ8tRmAZAoTzgEkJ8zLnjvX + ax++vlkAYf+F/Rf2/263/9X1soHDt+sz0Jv//hPGf0B8/yn0v2h/of8F5Ez/PzlPbtJj1q2eBr5O + /FdQ4A2k7/+X7xPzv7mK/0q+M3vhrJrHKucg2ursM034Raqs1ZW6sOZid8A8OMuzItiSUQh6jImt + UlfMqnVPdyFPylMaA5a6GhTcGNUNy4VCdL22BqkblbBVXxrGDUoIu9kf05CiKZYiq24zJKughyRv + EjWLTh9nmU9G7ozossTDE9s5VUVbDEGiWuoyrSYVm/UYgyB8JdnPPKoS9AR13TItQ456woppeUKm + mbglRRQNhoGZJMrEBGluOnfNM8lm1C1Ho1gLuxuwYSq6VuqiHyLcMLmM0JknuhHqJR67sUqCergp + vvaO2ffkb2E1Ob5YDy6DsoH4jxsvicpA2ow4NyyIcVVMP4BMuqkqdfUWCta5G+uh2CioG0DfHdQt + S4/AX0vcZj0E6I0oEnTnu8pSw+fkhYK0a8iKllgmmJJQThXRHTRANLsGDCyXuvg1fZNQ6uLLWFxl + mT1DzkY7GANZtTQGvKyGC1lNUSDJ07hQGDqfO2jaj6nUqipHTZz0RDbq6HiQbEKJFPTjUTctpqGr + cUbVsSgdGjg8iw8NV6aADrD8vFFwuNRVK6txqqocpD2ohklFW0ap41tylWUnV2IClewldishmq/E + Q5Nkqy4Pr4tsj5KaM630KH5BO5Rb0aDbY3etipegRaB5ldomt60b3EFsNWI8vugxNY0H7cCUkrvO + 0BvdvvEy2qMtKbMbOmxkouQZXc/NRqv9zbqx+HodcC5b0CpPJBBooDtAXnvWy1VmX3xloUs8MTVr + p+GLaye6V+IBgeMf2KfoqevqiZII3EIwrqAw9NLlpI5m0Tozq0BjYuNB0IrJ03AlHpozLgAXzv6r + FuwBNhyito6z9CiyH7AajsRgGKdIdSPq7bshPdo0A1ENlcWYwS1o0K/Uasn1W+LhgiZKZIYMJWoh + 0wg5ZnDRUzFsNHEbyK+Z8VtkMmXAkpeNmznNhi5KNqHBmBZW8Q0SW2Sbz0UT2bdkGpzKTLlRVizE + W7Yah6jyKzebtFCeq5qlNF3T2LYRCvi3xYjpzqnURtq2EToc9XnuXv9fxP8i/hfxv4j/s8T/NNjI + RfzvC+Snr/8q9HnF/k+5iv8996FKCO/ARzcx+Ol6KEY3tbH3GrLQjX125QmpCvXiTSWMPczyK1qd + m8aRYP+VWnvroCmT+aZCdL2XiWjwpWu1Sl3M4Bvl0DVhhr4IzDhdFsb9B7adDqPRhEwqVQg10u+6 + TBNbpoTu81BXQJaS40P+ZpXFpW72JroYaXTrIZW9pmU+mwzhq1aM+Adq7HYjOHeQHcuLixH7gTSq + 82WbzElCMKMbxehe+jojFHIeSkFLc0cNJSIbTanpamtrGe2gHFoMQQqUx+088gUDOOTnT7lbGX8y + PeCTE8SpNx9VVKguyXHsJZl+Go+noeSHZj0E22WJRLdekiT395mk1PB3MfJFlyBTV5UwuhcX0v94 + Lil1WiA5G781bk6WNz6JYGd0/i5GXiT5Cw0cQVIR+zHqgnKedxri/0vewqkOGR61QpXRzabcfD0h + p1ers/76NHQPH9BgNcDC03pM5zaKkaLVY0Ox4gLZTj/LHNXptlY69CE5COJDCGDXIC+Vl/cpOsEF + 1L3ef5iRpUs2gpecyTXgjS6ZkbNNsIX/J/w/4f8J/4/7f4+AXQwzS21Hz5V0EztZ/cveCF13/X8g + 7f2/n2YQ/l+u3v+MNyfkboh3h5TpIft21qmdGyHmjml60DJiJjgxGTSTnmWjL0assP9i/Av7L+BW + 2v8n6Qv2igh9I2ne+o8Ar2f/fYHC9PUfPl+hsP85sv8z+fr+9FdQUybPvP5S/plyOFwj183FahQi + 4/umjf+VQDyVKYy4sP/C/gv7L+DOsv/VdMf627EFwPXsvzdz/+dCev6TsP+5sf/2h2j85R/9sN9+ + D+iaIc5iFPZf2H9h/wV8Y+2/odcZcuTWb/p34/bf5y1Kj/8h/Bfff+QEGmQDsQ1z2dfsPMR3DnqS + ZhlYtvCD/HGebNSZ/AQCjweVh8PIxAb9jsN0zreKr3WV6Gt3lkmqttNIkCGxUUAep0OZy9EoMHaS + M155cS6z7OUh/MinuTU1lc4ZYCiqRDF9bw686CFg36FHLM1JnNkkVZhJJzTlTU2cCEYTPmziOc7p + U3NluszEyHPxU1BcU+2P+YE9PTIrzM+8RnOra6pRg6zGMFJMlO9FYbnJlNBjegxF5CbUKGts0Uqo + np5pxtey0LUuUUMPx9iyVGSGsCYbim5OYwttnHU18mJZipj2Whq6lMZdb1rOKVi2sHPhTl58SYNz + kxKowmHF4OteWQL7WTVbKfOQosbr2n5QBX6dotWl3iyPWfW6oTwtx8nwR/PlaEab0ftVMZ5KqE/h + /wn/T/h/Av6a/b8oNizldh4C/hX2f8gvKBT7Pwj9L9pf6H8BOdL/qhzTQvXV/KxcU1pk6lpu4v+A + P338F/rzxfv/nAALil0QpdbSWNFV7OxK50p/4594BA9DeiQCYfMCOYLhvquSf7ThmhZPwPvSg4be + aGIDktDPNxNPk85WfsQ+WtlMpg9Jsh/PTJklhfXxj+afTdAO6xbE0RChzsemSePWDO5JR1k/bKiU + pBOKs/Om63XTKi4CVTiD3k65WwiGyebpcHRVVFSjOUuiBnCbqIogmZPq66ulNNFn66HFjO+4Utsp + blRi/tSu1GeqQ/U4gp+FGnzGngWaC5X4bLHzV6VuWM8m0WabJZr15apKn2S2W8zE1dXz7NvxDROd + 8rgUxXR0V1I3blS0MAhLZzjoKZG82V32l8BORciarjVF9FhmsiQJKINsDZ29O6X0mwLv/fmBpJKa + JisipC0oyC/0Jpcl1ztACv9P+H/C/7t7IWNhX8ikn2De8vE/4fuffG/G+Q8+cf5TTqDE9t1QdXhx + qSuxehPcCgluSdA3XPZuGyV2rND0fUOPRZ1tPGrYvkcPGeAxNOrG4jJwvgKSt8STft9OTs+1pp5M + GdboT4knfsNOUBGh5lSxHqaLUs14srTbduKHTbbrh4EtsyJcVlgQCPsKw353cPr0+90FoaDfPV32 + 3+8uDHpDWC7C/oB8f4knNY9NiDs6s/m7Hi76wuqyeYoWW1Liyf4wJSf1nu1DqenBkpk3WQV60muQ + 3a2wcCSlSivl0GLwXKtwLTawFsKoQgupsTBObp9HFDMmq9VWLKzoUvnTMQNLs5zXb6ZUo+sq/MtE + NV3oEWcXFZ/kK5L8zi5kUKtJrOlmKHZnEN/Z3DUg/D/h/wn/7+6FxsZGQ9ctz+3kcfPvf7xFBT7x + /kfof9H+Qv8LyIX+p/sX3zn631eYL/S/0P+i/YX+F5Az/e/sX387xv9E3//le/3p879+cf5vboAd + 9ZCxHV6BswUdPRYYhxUZ5UUUzW3vZ1cUmB5dMpXnSuRPpRBgFPgLTUomkS6xc56BVZluZMgSUvrO + Fnj2hnl8/z49bO/XF5GNOkjkbLHn7JMnxrCw/2L8C/sv4C+x/7VyAz0ARIJ/bsv4H9/++/wFgfTz + n/K9RfnC/ucGvjXpbyYhRH/RpGX3TJr0Xbh3zz387/pvT5q0B67z4B4kmTRzEr9P4ef3ZCX3d4B/ + f7OYl5c39a1VKze/tXLlxlUr3+T45hsbV61YvnHlG8s2rlz++saVy17f+Nby19evorjsNcClSfja + +n/5+XP/2Xb0CDlyqIUcZtjMscXBgxybD5JWhgfiuHXTRnKqq5Nhd+dJ0n3yBOk6cZx0HT9GOo+1 + AR4lnW1HSOfRw+Tk0VZy8sghwJYUfGPpK9t6urvI2OhFco3hCLl2ieIwuXoRcOQC4HmGV4aHAM9x + vDBIjjbvJ19eu0rGrl4hY1cuk7HLo5zGJTvfMOS5AGnPDwIOkMtD/Rm4ee0axv/a5UtkqHM36dnx + R9Kz80/k1I4/kFOf/4Ec37eZtB85nFo/dt28t2UT4/8l5X8V+F9x+I+A7LbcVOYUGRJyXIHrzesS + /Ht2/pns+f0ssvfF75Pd/1sO+CDZ++5/sLoZc+pmNFE3ba0tnH9SHQz0niEDZ78gA2dOk/4vekj/ + 6W7S39NN+k51kVPH2+Ny8N9B4P8u8O+GurtMTu9aSva9+AOy/+VKcvDVHzHcv+kFJhvH5DYaJu2H + Kf9rKfwHe8+SkaFzTIbhc/0gw6mEDD1dvC6ScPP6tdt6TnWzvKd3L4WyV5Dm135M9v9hAdn30g/J + vnW/TOLvyMDrgfEfu2a3AZdhsK+XjJzn/EfODZD+Mz22DFwO2h7JuGXDOs4f2u+LPa+T/S/NIy2v + /4Tz/795jD+tG46jZHiwD+ryJOntPkH2fPaRzT9RBxcvnAcZzibaIbktAHl/TuCWDeu39fScImPX + rpAv9i5jfFuW/ZS1wb6X5pN963/F+7aNw4P9wL+T9IIMez//GPiPJeogfSzQ+rL7ozOmrl1MQvh7 + 68YNNv+rwH85lH8+OZTMf92veN++avOHNu3r6WR1sOfzT8ilixdtHCGXRobJpeEL5CJFqIeLF4bI + xfNDrD1Ghgaz4pp33ub8x66SM/tXkIN/epi0rqglB//8CDnwx2qyf8P/sLphCGUbhnHTd7qTybAX + +J87N0jODVIc4DjQT87195PB/j6O0B84nmV9cyAJ6d/vrn5n2+meHlaPZ/a/SQ68/I+kdXmIHATe + B6AO9m/4b1Y3HCn/gRT+Rw6DbjjcSg63OnjI1hOALS2kNY7NWXHpK6/E+Z89sIq0vPIYObJyEWlZ + +k+k+ZUfkQMw/mjdMAQZhqHO+k53MRn27viEnIKxu2f3bnLYliG5PyaPizGnb9i6itZT18mTZOWK + FdtOn+4hkJH0Uv5/fpQceVMhLa8+Rprh+sDGF+w+xvvZMLRnH4wjint2fMr4O9gdxy6OXUlI73d1 + ZeCqlSuB/2ny5Zdfkt6Db5NDr/6YHF0VIa2v/QRkeJwc2Py7JP5j0JeAP4znPhjPe3Z8Rk6dOpWB + q1evJvv370/B1SvfIM17dzGd2dbaTNpAj//mN795UZKkexP83yGHXnmcHF25mMlB2+Lgpt+yuqGY + 4N/DZGg9uB/qfhfDnSDLzs85btqwPn698/NPyc7PPiW7P/2QXOg/w22abRvWrl37b9T2U/4U+lvW + kCOvB0n72wb8hsjh135Kmjf/nsnGMIU/l2EYxhZF3iZd8b5JdYSjJ6iu6u3uAP5nE3YVcP369Sn8 + +5pXk9ZXf0LaVunk8NKfwvUTUP7fJfgDjlxI5t/D5BlJ6hMpMsTlOMnkGB7oTbFfGzduTCv/WnJ0 + GSbHVzeS4+82sd/DHy0jCfgSdMt5ptMz+LM+MbEMw4O9KTZ085bNqfyb3yVHXpPJsbcM9nt46ZOk + edPvU/iPXLhA+ij/M+n8eXv0fdGdkAPsnaMrOf++FDu6devWtPKvI23L61i5295QyFG4btn6fyQZ + qG7tO9vD6wCQtkeiTfi4gPKPgRxjrB5s/r3djP9V4H8Z8Crwv/ree+9l1v/rYXL8nRjwrmXXLVte + zODv8Gb8hzn//rOnM5DLA7L0cP4X0ur//fe3pfAfaFlP2pY55V/E6iJb+RntMxxHoD9QzMr/LJWR + tgmrD6a7nfofhf63ffv2VP6HgP9yhXSsbiLtKxazNmjZ+hK5VTAGevkq2NDR0VFy/vx58sEHH2Qp + P+d/7E0NZAA9+MHSrOW/EaTt0wttcAb64Vnoj+fBdlwGP+YC9OHe3l7y4YcfUv5/myj/BtL+hkqO + rzKYDCfW/oy07Vz7lfhT3pQnxa4Tx8gJiAXOgJ3pB9vcBXp/79695OjRo88ByW8l1387lP/YCpW0 + Qzu0L1+UUf83wp+W2eFN8YP3txHo62Tbtm1k06ZN7LqtrW0b5Z3M/2JvO2sDWg9UFvrbcfCjm+d/ + mvOnvxTff28r052XLl0iJzs7SWdnZ5x3Mv9sMNGz8eAa9DMHr1y5Qj7++GNyEXy0EydOZPCmCPfI + wMBAVuzo6Lj5fg52iiLlPTIyQvsZ5Uttcwbv6+G+ffueu1n+tK6vgt9DedP+tmPHDup/3DRvis3N + zc8Ngn85Xv1kQ8rz7NmzpAf8upPgY7W3t0/I++uey6DzFPfYcxXOPMXMb2emaz6w/xd7d+96fu+u + nTbueH7PToqfP79t65aNe3btPLZ7x+fHdn32ybGdn3x0bNfHH7bt/Hh7286Ptrete3vV9qGBPjJ8 + +hAZOrmDDJzcR85CTHgG4tIz3dA3Ok8w35TqZ+obsFgf4lMnVu5obe4YgrptWxODuATishVaSiza + B3EWzU9t0SCNvah9APpDMB4pnY4jhzqGIB5sX7uEHIDYYt/yCPAaJVeAF/VLzkBa6i+PQgxzrr+X + 0aDxGn1GfbUTbUc6hkB/tq97hhwEv3zfGxqLh0YhhqO+TffJDnKF0hu9RC5DLHQZ6IyCXWIIMh07 + 0tpxfmiIHN/wHPj2EN+++RSLJ6gdojb6KMQLzCeGcdINfaaLzaV0xBF8yY7z4Gec2PQL0rpMJgdX + xWCMXSOXL11k/s4R8Gvb29qYvhiCmGhokCONifpB1+/aubOD2pyTm/+VHF4eJs1vLWH+5GXQSdRn + ONR8wI5jDpEPtr/PfNpPP9xOTnd2kF6wHy/89oVqajc6t/47OboC7OLbz7BxdhnKS30PWmfnIMZy + fA7H7xyFuqftuWbNmjk0f9d7/0Xa33qKHF77PBurtM6orWD5AeP+m+23jEI/oG28bv06lr/7vV+S + 9pU6aV39czv/ZZZ/CNqJ9i/bD2K+Ty/PPwb9ZGzTpo08/7ZfkWOrgP+af47ryhHQ6aPQZqMQI1+0 + 41fmV0C7XRm9yJ5t2bKF5T+17dfk+Fsx0r7513H+49m+U1B3NDalsc+uXbtmMbu7dyU59f6vScdH + fxo3v2O39u7dQ0D/kAMHDrxM9QTVK1SPU6TXE+l/aucPQ2wKevflbDoHaJY7tNJxeHiY6a/W1taX + 7yQ9Jd7/ifd/4v2fgDvn/d+iO2z/p0Kx/5PQ/6L9hf4XkCv9z5Z/LjJvz/ifcP1nQfr6D38gINZ/ + 5gTo+d+eHJ7/Dcxu8RHg9lbRjxrQfVGTHjPQD+QGmZ9fCsTDdIdoMc6F/RfjX9h/AekQKgwGwjiI + a72F0wvury0I+kJFtd7Q9OmBoL8w6K19MrGVye2y/xDs+dLGf8Bb5BP2Pxdwb3XmUQQhqBM9ojyN + 4wc6UFsMLoKhoXq9kR1z4CThFhd6UKwucf4DM9g0Jd+lBvFtalDMpGdFUBOf6FTcyitqmBNSInTL + RuYi1MqmhW3SdeAcMEP/UNXC+SgSMtIcEb7po+2PFAckLyqvRkFwaaZMfnRh1Q9nV1QhjxyNTpk8 + 50eVC6vnoOne+GVBQf71CZvhxXGqVNgksqYRmjJ51sLKx9DjrnE203JNQy7J9cSUyVUPL0CcIjIg + KbhN8MAzXi6brISkBDsX5eeRXCm0eP2Nyx25Q6gKcw/PrbOK8NilsMvNCUDh7C0YU6jb926OvpPJ + Ey2m50tEo3Trx1K26WKCK80ATGsVTVbTG4oV3e2uNfRIaZxYMmWolDkLaqoeq1xYsaAG6p5LS6s6 + Q86wqrqeEKpegAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAAB3zD4fya9hsUA GAEA headers: Accept: @@ -2972,11 +3153,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Sat, 08 Jul 2023 07:14:26 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-version: - '2022-11-02' method: PUT - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/source/202307080000/c6f21d4f-7873-47ce-a6fe-d4e46791327b.tar.gz?sv=2021-12-02&se=2023-07-08T08%3A14%3A26Z&sr=b&sp=cw&sig=eSd8VBg%2BQI3fjHxg80vWPGCbDEgaBXCC544q06XjP9w%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/source/202307260000/e1037e99-bbdb-4ae0-9637-13d4afb1b8c8.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A18Z&sr=b&sp=cw&sig=OVyZq2PRyuV647WR1WN3zQQu3GVw5QhDaD6ZfPWUikc%3D response: body: string: '' @@ -2984,17 +3165,17 @@ interactions: content-length: - '0' content-md5: - - xmTthmXYatXvKA67OCZH/w== + - /rwKILFO1Wu253DvzgrhxQ== date: - - Sat, 08 Jul 2023 07:14:26 GMT + - Wed, 26 Jul 2023 05:19:19 GMT etag: - - '"0x8DB7F82F7050C8D"' + - '"0x8DB8D97DD453328"' last-modified: - - Sat, 08 Jul 2023 07:14:26 GMT + - Wed, 26 Jul 2023 05:19:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: - - BP8evwhJFUU= + - 6LyMv8ypZXI= x-ms-request-server-encrypted: - 'true' x-ms-version: @@ -3004,10 +3185,10 @@ interactions: message: Created - request: body: '{"type": "DockerBuildRequest", "isArchiveEnabled": false, "imageNames": - ["containerapp000003:20230708001424884576"], "isPushEnabled": true, "noCache": - false, "dockerFilePath": "c427be653bc14f7ca8ae4b438b0b0519_Dockerfile", "arguments": + ["containerapp000003:20230725221919927360"], "isPushEnabled": true, "noCache": + false, "dockerFilePath": "c5b6debef05849f4b1c7f0c886b25b0f_Dockerfile", "arguments": [], "platform": {"os": "Linux", "architecture": "amd64"}, "sourceLocation": - "source/202307080000/c6f21d4f-7873-47ce-a6fe-d4e46791327b.tar.gz"}' + "source/202307260000/e1037e99-bbdb-4ae0-9637-13d4afb1b8c8.tar.gz"}' headers: Accept: - application/json @@ -3031,7 +3212,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-08T07:14:27+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:27.0643665+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-26T05:19:20+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:19.5849185+00:00"}}' headers: cache-control: - no-cache @@ -3040,21 +3221,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:26 GMT + - Wed, 26 Jul 2023 05:19:19 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 999BC267F9BE415795F4ADD04BDCFF45 Ref B: CO6AA3150218011 Ref C: 2023-07-26T05:19:19Z' status: code: 200 message: OK @@ -3081,30 +3262,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview response: body: - string: '{"logLink":"https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D"}' + string: '{"logLink":"https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D"}' headers: cache-control: - no-cache content-length: - - '227' + - '228' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 4B1A0C2ABA66428A90148B8CA3CAA291 Ref B: CO6AA3150218031 Ref C: 2023-07-26T05:19:20Z' status: code: 200 message: OK @@ -3116,11 +3297,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:22 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3136,11 +3317,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT etag: - - '"0x8DB7F82F7D8FA74"' + - '"0x8DB8D97DE070733"' last-modified: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3148,7 +3329,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3168,11 +3349,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:22 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3188,11 +3369,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT etag: - - '"0x8DB7F82F7D8FA74"' + - '"0x8DB8D97DE070733"' last-modified: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3200,7 +3381,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3220,16 +3401,16 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:22 GMT x-ms-range: - bytes=0-4095 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: "2023/07/08 07:14:28 Downloading source code...\r\n" + string: "2023/07/26 05:19:20 Downloading source code...\r\n" headers: accept-ranges: - bytes @@ -3244,11 +3425,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT etag: - - '"0x8DB7F82F7D8FA74"' + - '"0x8DB8D97DE070733"' last-modified: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3256,7 +3437,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3276,11 +3457,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:23 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3296,11 +3477,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:21 GMT etag: - - '"0x8DB7F82F7D8FA74"' + - '"0x8DB8D97DE070733"' last-modified: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3308,7 +3489,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3328,11 +3509,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:25 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3348,11 +3529,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:23 GMT etag: - - '"0x8DB7F82F9AFA102"' + - '"0x8DB8D97DFC47B80"' last-modified: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3360,7 +3541,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3380,23 +3561,23 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:25 GMT x-ms-range: - bytes=48-4143 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: "2023/07/08 07:14:29 Finished downloading source code\r\n2023/07/08 - 07:14:29 Using acb_vol_d3af5406-03c7-4107-8144-f68e4a6d8f30 as the home volume\n2023/07/08 - 07:14:29 Setting up Docker configuration...\n2023/07/08 07:14:30 Successfully - set up Docker configuration\n2023/07/08 07:14:30 Logging in to registry: containerapp000004.azurecr.io\n2023/07/08 - 07:14:30 Successfully logged into containerapp000004.azurecr.io\n2023/07/08 - 07:14:30 Executing step ID: build. Timeout(sec): 28800, Working directory: - '', Network: ''\n2023/07/08 07:14:30 Scanning for dependencies...\n2023/07/08 - 07:14:31 Successfully scanned dependencies\n2023/07/08 07:14:31 Launching + string: "2023/07/26 05:19:21 Finished downloading source code\r\n2023/07/26 + 05:19:21 Using acb_vol_4b3cef83-d9d8-40be-b696-ddea3d0cf240 as the home volume\n2023/07/26 + 05:19:21 Setting up Docker configuration...\n2023/07/26 05:19:22 Successfully + set up Docker configuration\n2023/07/26 05:19:22 Logging in to registry: containerapp000004.azurecr.io\n2023/07/26 + 05:19:23 Successfully logged into containerapp000004.azurecr.io\n2023/07/26 + 05:19:23 Executing step ID: build. Timeout(sec): 28800, Working directory: + '', Network: ''\n2023/07/26 05:19:23 Scanning for dependencies...\n2023/07/26 + 05:19:23 Successfully scanned dependencies\n2023/07/26 05:19:23 Launching container with name: build\r\n" headers: accept-ranges: @@ -3412,11 +3593,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:23 GMT etag: - - '"0x8DB7F82F9AFA102"' + - '"0x8DB8D97DFC47B80"' last-modified: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3424,7 +3605,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3444,11 +3625,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:25 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3464,11 +3645,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:23 GMT etag: - - '"0x8DB7F82F9AFA102"' + - '"0x8DB8D97DFC47B80"' last-modified: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3476,7 +3657,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3496,11 +3677,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:34 GMT + - Wed, 26 Jul 2023 05:19:28 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3512,23 +3693,23 @@ interactions: content-encoding: - utf-8 content-length: - - '732' + - '1428' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:33 GMT + - Wed, 26 Jul 2023 05:19:26 GMT etag: - - '"0x8DB7F82F9AFA102"' + - '"0x8DB8D97E14ABB45"' last-modified: - - Sat, 08 Jul 2023 07:14:31 GMT + - Wed, 26 Jul 2023 05:19:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '3' + - '4' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3548,14 +3729,24 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:28 GMT + x-ms-range: + - bytes=732-4827 x-ms-version: - '2018-11-09' - method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + method: GET + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: '' + string: "Sending build context to Docker daemon 35.33kB\r\r\nStep 1/17 : FROM + mcr.microsoft.com/dotnet/aspnet:6.0 AS base\n6.0: Pulling from dotnet/aspnet\n9d21b12d5fab: + Pulling fs layer\n20307483facf: Pulling fs layer\n51885b20fc11: Pulling fs + layer\n573f002b5cb0: Pulling fs layer\nb70e22fadac0: Pulling fs layer\n573f002b5cb0: + Waiting\nb70e22fadac0: Waiting\n20307483facf: Verifying Checksum\n20307483facf: + Download complete\n9d21b12d5fab: Verifying Checksum\n9d21b12d5fab: Download + complete\n573f002b5cb0: Verifying Checksum\n573f002b5cb0: Download complete\n51885b20fc11: + Verifying Checksum\n51885b20fc11: Download complete\nb70e22fadac0: Verifying + Checksum\nb70e22fadac0: Download complete\n9d21b12d5fab: Pull complete\r\n" headers: accept-ranges: - bytes @@ -3564,23 +3755,25 @@ interactions: content-encoding: - utf-8 content-length: - - '1766' + - '696' + content-range: + - bytes 732-1427/1428 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:26 GMT etag: - - '"0x8DB7F82FCAB7C84"' + - '"0x8DB8D97E14ABB45"' last-modified: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '5' + - '4' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3590,8 +3783,8 @@ interactions: x-ms-version: - '2018-11-09' status: - code: 200 - message: OK + code: 206 + message: Partial Content - request: body: null headers: @@ -3600,28 +3793,14 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:36 GMT - x-ms-range: - - bytes=732-4827 + - Wed, 26 Jul 2023 05:19:28 GMT x-ms-version: - '2018-11-09' - method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: "Sending build context to Docker daemon 35.33kB\r\r\nStep 1/17 : FROM - mcr.microsoft.com/dotnet/aspnet:6.0 AS base\n6.0: Pulling from dotnet/aspnet\n9d21b12d5fab: - Pulling fs layer\neca6fd7d457a: Pulling fs layer\na989f10a2de0: Pulling fs - layer\ncf9782c65917: Pulling fs layer\n7c26c11d86af: Pulling fs layer\ncf9782c65917: - Waiting\n7c26c11d86af: Waiting\neca6fd7d457a: Verifying Checksum\neca6fd7d457a: - Download complete\na989f10a2de0: Verifying Checksum\na989f10a2de0: Download - complete\n9d21b12d5fab: Verifying Checksum\n9d21b12d5fab: Download complete\ncf9782c65917: - Verifying Checksum\ncf9782c65917: Download complete\n7c26c11d86af: Verifying - Checksum\n7c26c11d86af: Download complete\n9d21b12d5fab: Pull complete\r\neca6fd7d457a: - Pull complete\na989f10a2de0: Pull complete\ncf9782c65917: Pull complete\n7c26c11d86af: - Pull complete\nDigest: sha256:f383408c6be95a4a13edaecd3f5ff1aa8c9aebf29820d69b603367aa392dbbdd\nStatus: - Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> 944b6c5ff1d6\nStep - 2/17 : WORKDIR /app\n ---> Running in 9cbb5afb8468\r\n" + string: '' headers: accept-ranges: - bytes @@ -3630,25 +3809,23 @@ interactions: content-encoding: - utf-8 content-length: - - '1034' - content-range: - - bytes 732-1765/1766 + - '1428' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:26 GMT etag: - - '"0x8DB7F82FCAB7C84"' + - '"0x8DB8D97E14ABB45"' last-modified: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '5' + - '4' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3658,8 +3835,8 @@ interactions: x-ms-version: - '2018-11-09' status: - code: 206 - message: Partial Content + code: 200 + message: OK - request: body: null headers: @@ -3668,11 +3845,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:31 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3684,15 +3861,15 @@ interactions: content-encoding: - utf-8 content-length: - - '1766' + - '1541' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:29 GMT etag: - - '"0x8DB7F82FCAB7C84"' + - '"0x8DB8D97E27E2C3B"' last-modified: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3700,7 +3877,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3720,14 +3897,17 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:38 GMT + - Wed, 26 Jul 2023 05:19:31 GMT + x-ms-range: + - bytes=1428-5523 x-ms-version: - '2018-11-09' - method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + method: GET + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: '' + string: "20307483facf: Pull complete\n51885b20fc11: Pull complete\n573f002b5cb0: + Pull complete\nb70e22fadac0: Pull complete\r\n" headers: accept-ranges: - bytes @@ -3736,15 +3916,17 @@ interactions: content-encoding: - utf-8 content-length: - - '1766' + - '113' + content-range: + - bytes 1428-1540/1541 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:38 GMT + - Wed, 26 Jul 2023 05:19:29 GMT etag: - - '"0x8DB7F82FCAB7C84"' + - '"0x8DB8D97E27E2C3B"' last-modified: - - Sat, 08 Jul 2023 07:14:36 GMT + - Wed, 26 Jul 2023 05:19:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3752,7 +3934,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3762,8 +3944,8 @@ interactions: x-ms-version: - '2018-11-09' status: - code: 200 - message: OK + code: 206 + message: Partial Content - request: body: null headers: @@ -3772,11 +3954,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:31 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3788,23 +3970,23 @@ interactions: content-encoding: - utf-8 content-length: - - '2123' + - '1541' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:40 GMT + - Wed, 26 Jul 2023 05:19:29 GMT etag: - - '"0x8DB7F82FE33BEF4"' + - '"0x8DB8D97E27E2C3B"' last-modified: - - Sat, 08 Jul 2023 07:14:39 GMT + - Wed, 26 Jul 2023 05:19:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '6' + - '5' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3824,20 +4006,75 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:41 GMT - x-ms-range: - - bytes=1766-5861 + - Wed, 26 Jul 2023 05:19:34 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2123' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:32 GMT + etag: + - '"0x8DB8D97E424726D"' + last-modified: + - Wed, 26 Jul 2023 05:19:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:20 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:34 GMT + x-ms-range: + - bytes=1541-5636 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: "Removing intermediate container 9cbb5afb8468\n ---> fac597188334\nStep - 3/17 : EXPOSE 80\n ---> Running in afa0ffb81b50\nRemoving intermediate container - afa0ffb81b50\n ---> de260dc90a8b\nStep 4/17 : EXPOSE 443\n ---> Running in - f08b2d70371f\nRemoving intermediate container f08b2d70371f\n ---> 38cbc42d3d83\nStep - 5/17 : FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build\r\n" + string: "Digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> e21be194dede\nStep + 2/17 : WORKDIR /app\n ---> Running in 140d84b2f842\nRemoving intermediate + container 140d84b2f842\n ---> e11a6bd9af74\nStep 3/17 : EXPOSE 80\n ---> Running + in acef0e97e47c\nRemoving intermediate container acef0e97e47c\n ---> dbc87d2cb911\nStep + 4/17 : EXPOSE 443\n ---> Running in 2d6e8207b86c\nRemoving intermediate container + 2d6e8207b86c\n ---> fde280f1143a\nStep 5/17 : FROM mcr.microsoft.com/dotnet/sdk:6.0 + AS build\r\n" headers: accept-ranges: - bytes @@ -3846,17 +4083,17 @@ interactions: content-encoding: - utf-8 content-length: - - '357' + - '582' content-range: - - bytes 1766-2122/2123 + - bytes 1541-2122/2123 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:40 GMT + - Wed, 26 Jul 2023 05:19:32 GMT etag: - - '"0x8DB7F82FE33BEF4"' + - '"0x8DB8D97E424726D"' last-modified: - - Sat, 08 Jul 2023 07:14:39 GMT + - Wed, 26 Jul 2023 05:19:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3864,7 +4101,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3884,11 +4121,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:34 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3904,11 +4141,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:32 GMT etag: - - '"0x8DB7F82FE33BEF4"' + - '"0x8DB8D97E424726D"' last-modified: - - Sat, 08 Jul 2023 07:14:39 GMT + - Wed, 26 Jul 2023 05:19:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3916,7 +4153,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3936,11 +4173,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:44 GMT + - Wed, 26 Jul 2023 05:19:37 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -3956,11 +4193,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:43 GMT + - Wed, 26 Jul 2023 05:19:35 GMT etag: - - '"0x8DB7F82FFC2D777"' + - '"0x8DB8D97E5A1B2D4"' last-modified: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -3968,7 +4205,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -3988,21 +4225,21 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:44 GMT + - Wed, 26 Jul 2023 05:19:37 GMT x-ms-range: - bytes=2123-6218 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: "6.0: Pulling from dotnet/sdk\n9d21b12d5fab: Already exists\neca6fd7d457a: - Already exists\na989f10a2de0: Already exists\ncf9782c65917: Already exists\n7c26c11d86af: - Already exists\n9982b59f30ae: Pulling fs layer\n5cfb30e275b9: Pulling fs layer\n40837876a537: - Pulling fs layer\n40837876a537: Verifying Checksum\n40837876a537: Download - complete\n9982b59f30ae: Verifying Checksum\n9982b59f30ae: Download complete\n5cfb30e275b9: - Verifying Checksum\n5cfb30e275b9: Download complete\n9982b59f30ae: Pull complete\r\n" + string: "6.0: Pulling from dotnet/sdk\n9d21b12d5fab: Already exists\n20307483facf: + Already exists\n51885b20fc11: Already exists\n573f002b5cb0: Already exists\nb70e22fadac0: + Already exists\n3daac94afcbd: Pulling fs layer\n4cda43ab38c0: Pulling fs layer\naa0c354e371d: + Pulling fs layer\naa0c354e371d: Verifying Checksum\naa0c354e371d: Download + complete\n3daac94afcbd: Verifying Checksum\n3daac94afcbd: Download complete\n4cda43ab38c0: + Verifying Checksum\n4cda43ab38c0: Download complete\n3daac94afcbd: Pull complete\r\n" headers: accept-ranges: - bytes @@ -4017,11 +4254,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:43 GMT + - Wed, 26 Jul 2023 05:19:35 GMT etag: - - '"0x8DB7F82FFC2D777"' + - '"0x8DB8D97E5A1B2D4"' last-modified: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4029,7 +4266,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4049,11 +4286,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:44 GMT + - Wed, 26 Jul 2023 05:19:37 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4069,11 +4306,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:43 GMT + - Wed, 26 Jul 2023 05:19:35 GMT etag: - - '"0x8DB7F82FFC2D777"' + - '"0x8DB8D97E5A1B2D4"' last-modified: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4081,7 +4318,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4101,11 +4338,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:46 GMT + - Wed, 26 Jul 2023 05:19:40 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4121,11 +4358,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:46 GMT + - Wed, 26 Jul 2023 05:19:38 GMT etag: - - '"0x8DB7F82FFC2D777"' + - '"0x8DB8D97E5A1B2D4"' last-modified: - - Sat, 08 Jul 2023 07:14:41 GMT + - Wed, 26 Jul 2023 05:19:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4133,7 +4370,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4153,11 +4390,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:48 GMT + - Wed, 26 Jul 2023 05:19:42 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4173,11 +4410,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:48 GMT + - Wed, 26 Jul 2023 05:19:40 GMT etag: - - '"0x8DB7F83030BE00B"' + - '"0x8DB8D97E8F3BCB0"' last-modified: - - Sat, 08 Jul 2023 07:14:47 GMT + - Wed, 26 Jul 2023 05:19:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4185,7 +4422,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4205,16 +4442,16 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:48 GMT + - Wed, 26 Jul 2023 05:19:43 GMT x-ms-range: - bytes=2614-6709 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: "5cfb30e275b9: Pull complete\r\n" + string: "4cda43ab38c0: Pull complete\r\n" headers: accept-ranges: - bytes @@ -4229,11 +4466,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:48 GMT + - Wed, 26 Jul 2023 05:19:40 GMT etag: - - '"0x8DB7F83030BE00B"' + - '"0x8DB8D97E8F3BCB0"' last-modified: - - Sat, 08 Jul 2023 07:14:47 GMT + - Wed, 26 Jul 2023 05:19:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4241,7 +4478,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4261,11 +4498,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:48 GMT + - Wed, 26 Jul 2023 05:19:43 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4281,11 +4518,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:48 GMT + - Wed, 26 Jul 2023 05:19:40 GMT etag: - - '"0x8DB7F83030BE00B"' + - '"0x8DB8D97E8F3BCB0"' last-modified: - - Sat, 08 Jul 2023 07:14:47 GMT + - Wed, 26 Jul 2023 05:19:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4293,7 +4530,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4313,11 +4550,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:51 GMT + - Wed, 26 Jul 2023 05:19:45 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4333,11 +4570,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:43 GMT etag: - - '"0x8DB7F8304CA10F6"' + - '"0x8DB8D97EABB68A8"' last-modified: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4345,7 +4582,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4365,21 +4602,21 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:51 GMT + - Wed, 26 Jul 2023 05:19:45 GMT x-ms-range: - bytes=2643-6738 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: "40837876a537: Pull complete\nDigest: sha256:017deb67e5f21988120b322735d0c24beba3daf02e02b31dea4aea243a37a3e8\nStatus: - Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> add3a601df3c\nStep - 6/17 : WORKDIR /src\n ---> Running in e4c80e39acad\nRemoving intermediate - container e4c80e39acad\n ---> 76a6044f3b22\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", - \".\"]\n ---> 9a59163c81fc\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\n - ---> Running in 2d81ecc3da66\n Determining projects to restore...\r\n" + string: "aa0c354e371d: Pull complete\nDigest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> 7d987f8db548\nStep + 6/17 : WORKDIR /src\n ---> Running in 2e426891df22\nRemoving intermediate + container 2e426891df22\n ---> 9eeda81d9c72\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", + \".\"]\n ---> 44585ae0d44c\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\n + ---> Running in 872e060ef77f\n Determining projects to restore...\r\n" headers: accept-ranges: - bytes @@ -4394,11 +4631,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:43 GMT etag: - - '"0x8DB7F8304CA10F6"' + - '"0x8DB8D97EABB68A8"' last-modified: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4406,7 +4643,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4426,11 +4663,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:51 GMT + - Wed, 26 Jul 2023 05:19:45 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4446,11 +4683,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:43 GMT etag: - - '"0x8DB7F8304CA10F6"' + - '"0x8DB8D97EABB68A8"' last-modified: - - Sat, 08 Jul 2023 07:14:50 GMT + - Wed, 26 Jul 2023 05:19:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4458,7 +4695,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4478,11 +4715,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:47 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4498,11 +4735,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:45 GMT etag: - - '"0x8DB7F830693A6D0"' + - '"0x8DB8D97EC807CF9"' last-modified: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4510,7 +4747,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4530,17 +4767,17 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:47 GMT x-ms-range: - bytes=3153-7248 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: " Restored /src/TestWebApp202305.csproj (in 468 ms).\nRemoving intermediate - container 2d81ecc3da66\n ---> 561c691f087c\nStep 9/17 : COPY . .\n ---> 51783b8f27d9\nStep + string: " Restored /src/TestWebApp202305.csproj (in 492 ms).\nRemoving intermediate + container 872e060ef77f\n ---> 223c07d45408\nStep 9/17 : COPY . .\n ---> 402b2d7f8e8b\nStep 10/17 : WORKDIR \"/src/.\"\r\n" headers: accept-ranges: @@ -4556,11 +4793,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:45 GMT etag: - - '"0x8DB7F830693A6D0"' + - '"0x8DB8D97EC807CF9"' last-modified: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4568,7 +4805,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4588,11 +4825,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:47 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4608,11 +4845,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:45 GMT etag: - - '"0x8DB7F830693A6D0"' + - '"0x8DB8D97EC807CF9"' last-modified: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4620,7 +4857,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4640,11 +4877,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:55 GMT + - Wed, 26 Jul 2023 05:19:50 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4656,23 +4893,23 @@ interactions: content-encoding: - utf-8 content-length: - - '3341' + - '3626' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:56 GMT + - Wed, 26 Jul 2023 05:19:47 GMT etag: - - '"0x8DB7F830693A6D0"' + - '"0x8DB8D97EDE70463"' last-modified: - - Sat, 08 Jul 2023 07:14:53 GMT + - Wed, 26 Jul 2023 05:19:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '10' + - '11' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4692,14 +4929,19 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:59 GMT + - Wed, 26 Jul 2023 05:19:50 GMT + x-ms-range: + - bytes=3341-7436 x-ms-version: - '2018-11-09' - method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + method: GET + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: '' + string: " ---> Running in 063aa0455fc5\nRemoving intermediate container 063aa0455fc5\n + ---> 2b42b6ed5a86\nStep 11/17 : RUN dotnet build \"TestWebApp202305.csproj\" + -c Release -o /app/build\n ---> Running in 27cd930726aa\nMSBuild version 17.3.2+561848881 + for .NET\n Determining projects to restore...\r\n" headers: accept-ranges: - bytes @@ -4708,15 +4950,17 @@ interactions: content-encoding: - utf-8 content-length: - - '3626' + - '285' + content-range: + - bytes 3341-3625/3626 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:59 GMT + - Wed, 26 Jul 2023 05:19:48 GMT etag: - - '"0x8DB7F8309289F11"' + - '"0x8DB8D97EDE70463"' last-modified: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4724,7 +4968,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4734,8 +4978,8 @@ interactions: x-ms-version: - '2018-11-09' status: - code: 200 - message: OK + code: 206 + message: Partial Content - request: body: null headers: @@ -4744,19 +4988,14 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:59 GMT - x-ms-range: - - bytes=3341-7436 + - Wed, 26 Jul 2023 05:19:50 GMT x-ms-version: - '2018-11-09' - method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: " ---> Running in 1ed2c414e01f\nRemoving intermediate container 1ed2c414e01f\n - ---> d49f6fa31a7d\nStep 11/17 : RUN dotnet build \"TestWebApp202305.csproj\" - -c Release -o /app/build\n ---> Running in 0b8d386a7bf5\nMSBuild version 17.3.2+561848881 - for .NET\n Determining projects to restore...\r\n" + string: '' headers: accept-ranges: - bytes @@ -4765,17 +5004,15 @@ interactions: content-encoding: - utf-8 content-length: - - '285' - content-range: - - bytes 3341-3625/3626 + - '3626' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:59 GMT + - Wed, 26 Jul 2023 05:19:48 GMT etag: - - '"0x8DB7F8309289F11"' + - '"0x8DB8D97EDE70463"' last-modified: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4783,7 +5020,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4793,8 +5030,8 @@ interactions: x-ms-version: - '2018-11-09' status: - code: 206 - message: Partial Content + code: 200 + message: OK - request: body: null headers: @@ -4803,11 +5040,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:14:59 GMT + - Wed, 26 Jul 2023 05:19:52 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4823,11 +5060,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:59 GMT + - Wed, 26 Jul 2023 05:19:50 GMT etag: - - '"0x8DB7F8309289F11"' + - '"0x8DB8D97EDE70463"' last-modified: - - Sat, 08 Jul 2023 07:14:57 GMT + - Wed, 26 Jul 2023 05:19:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4835,7 +5072,7 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4855,11 +5092,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:55 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4871,23 +5108,23 @@ interactions: content-encoding: - utf-8 content-length: - - '3899' + - '4176' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:01 GMT + - Wed, 26 Jul 2023 05:19:53 GMT etag: - - '"0x8DB7F830AD13C72"' + - '"0x8DB8D97F18BB602"' last-modified: - - Sat, 08 Jul 2023 07:15:00 GMT + - Wed, 26 Jul 2023 05:19:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '12' + - '13' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4907,19 +5144,22 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:55 GMT x-ms-range: - bytes=3626-7721 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: " All projects are up-to-date for restore.\n TestWebApp202305 -> /app/build/TestWebApp202305.dll\n\nBuild - succeeded.\n 0 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:04.50\nRemoving - intermediate container 0b8d386a7bf5\n ---> 5e1734c2811e\nStep 12/17 : FROM - build AS publish\r\n" + string: " All projects are up-to-date for restore.\n TestWebApp202305 -> /app/build/TestWebApp202305.dll\r\n\nBuild + succeeded.\n 0 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:04.66\nRemoving + intermediate container 27cd930726aa\n ---> 67126e684b7a\nStep 12/17 : FROM + build AS publish\n ---> 67126e684b7a\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" + -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in 2dc6b47f2a97\nMSBuild + version 17.3.2+561848881 for .NET\n Determining projects to restore...\n + \ All projects are up-to-date for restore.\r\n" headers: accept-ranges: - bytes @@ -4928,25 +5168,25 @@ interactions: content-encoding: - utf-8 content-length: - - '273' + - '550' content-range: - - bytes 3626-3898/3899 + - bytes 3626-4175/4176 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:01 GMT + - Wed, 26 Jul 2023 05:19:53 GMT etag: - - '"0x8DB7F830AD13C72"' + - '"0x8DB8D97F18BB602"' last-modified: - - Sat, 08 Jul 2023 07:15:00 GMT + - Wed, 26 Jul 2023 05:19:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '12' + - '13' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -4966,11 +5206,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:55 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -4982,15 +5222,15 @@ interactions: content-encoding: - utf-8 content-length: - - '4243' + - '4176' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:53 GMT etag: - - '"0x8DB7F830C1D073E"' + - '"0x8DB8D97F18BB602"' last-modified: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: @@ -4998,7 +5238,59 @@ interactions: x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:57 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4563' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:55 GMT + etag: + - '"0x8DB8D97F30BB520"' + last-modified: + - Wed, 26 Jul 2023 05:19:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5018,19 +5310,21 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:58 GMT x-ms-range: - - bytes=3899-7994 + - bytes=4176-8271 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: " ---> 5e1734c2811e\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" - -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in fa26526fcbd7\nMSBuild - version 17.3.2+561848881 for .NET\n Determining projects to restore...\n - \ All projects are up-to-date for restore.\n TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\r\n" + string: " TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\n + \ TestWebApp202305 -> /app/publish/\nRemoving intermediate container 2dc6b47f2a97\n + ---> 4bca33cc53ee\nStep 14/17 : FROM base AS final\n ---> fde280f1143a\nStep + 15/17 : WORKDIR /app\n ---> Running in fd22c4e5cc0c\nRemoving intermediate + container fd22c4e5cc0c\n ---> 71746c2da1c8\nStep 16/17 : COPY --from=publish + /app/publish .\r\n" headers: accept-ranges: - bytes @@ -5039,25 +5333,25 @@ interactions: content-encoding: - utf-8 content-length: - - '344' + - '387' content-range: - - bytes 3899-4242/4243 + - bytes 4176-4562/4563 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:55 GMT etag: - - '"0x8DB7F830C1D073E"' + - '"0x8DB8D97F30BB520"' last-modified: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '13' + - '14' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5077,11 +5371,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:58 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5093,23 +5387,23 @@ interactions: content-encoding: - utf-8 content-length: - - '4243' + - '4563' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:55 GMT etag: - - '"0x8DB7F830C1D073E"' + - '"0x8DB8D97F30BB520"' last-modified: - - Sat, 08 Jul 2023 07:15:02 GMT + - Wed, 26 Jul 2023 05:19:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '13' + - '14' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5129,11 +5423,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:20:00 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5145,23 +5439,23 @@ interactions: content-encoding: - utf-8 content-length: - - '4641' + - '5157' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:57 GMT etag: - - '"0x8DB7F830DC18A98"' + - '"0x8DB8D97F4567B37"' last-modified: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:58 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '14' + - '15' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5181,20 +5475,22 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:20:00 GMT x-ms-range: - - bytes=4243-8338 + - bytes=4563-8658 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: " TestWebApp202305 -> /app/publish/\nRemoving intermediate container - fa26526fcbd7\n ---> a4a42923897f\nStep 14/17 : FROM base AS final\n ---> 38cbc42d3d83\nStep - 15/17 : WORKDIR /app\n ---> Running in b728659ab444\nRemoving intermediate - container b728659ab444\n ---> abd8db2279bb\nStep 16/17 : COPY --from=publish - /app/publish .\n ---> 4bd4d541cf38\nStep 17/17 : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\r\n" + string: " ---> 8317e0db2873\nStep 17/17 : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\n + ---> Running in 527f74161491\nRemoving intermediate container 527f74161491\n + ---> 9281f0638b41\nSuccessfully built 9281f0638b41\nSuccessfully tagged containerapp000004.azurecr.io/containerapp000003:20230725221919927360\n2023/07/26 + 05:19:58 Successfully executed container: build\n2023/07/26 05:19:58 Executing + step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2023/07/26 + 05:19:58 Pushing image: containerapp000004.azurecr.io/containerapp000003:20230725221919927360, + attempt 1\r\n" headers: accept-ranges: - bytes @@ -5203,25 +5499,25 @@ interactions: content-encoding: - utf-8 content-length: - - '398' + - '570' content-range: - - bytes 4243-4640/4641 + - bytes 4563-5156/5157 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:58 GMT etag: - - '"0x8DB7F830DC18A98"' + - '"0x8DB8D97F4567B37"' last-modified: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:58 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '14' + - '15' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5241,11 +5537,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:20:00 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5257,23 +5553,23 @@ interactions: content-encoding: - utf-8 content-length: - - '4641' + - '5157' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:58 GMT etag: - - '"0x8DB7F830DC18A98"' + - '"0x8DB8D97F4567B37"' last-modified: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:58 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '14' + - '15' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5293,11 +5589,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:08 GMT + - Wed, 26 Jul 2023 05:20:02 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5309,23 +5605,23 @@ interactions: content-encoding: - utf-8 content-length: - - '4641' + - '5157' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:07 GMT + - Wed, 26 Jul 2023 05:20:00 GMT etag: - - '"0x8DB7F830DC18A98"' + - '"0x8DB8D97F4567B37"' last-modified: - - Sat, 08 Jul 2023 07:15:05 GMT + - Wed, 26 Jul 2023 05:19:58 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '14' + - '15' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5345,11 +5641,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:10 GMT + - Wed, 26 Jul 2023 05:20:05 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5361,23 +5657,23 @@ interactions: content-encoding: - utf-8 content-length: - - '5483' + - '5547' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:10 GMT + - Wed, 26 Jul 2023 05:20:02 GMT etag: - - '"0x8DB7F830FA126A9"' + - '"0x8DB8D97F649EBBE"' last-modified: - - Sat, 08 Jul 2023 07:15:08 GMT + - Wed, 26 Jul 2023 05:20:01 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '15' + - '16' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5397,24 +5693,20 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:10 GMT + - Wed, 26 Jul 2023 05:20:05 GMT x-ms-range: - - bytes=4641-8736 + - bytes=5157-9252 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: " ---> Running in 42bb9cedd8c0\nRemoving intermediate container 42bb9cedd8c0\n - ---> 3d40f0e37a1f\nSuccessfully built 3d40f0e37a1f\nSuccessfully tagged containerapp000004.azurecr.io/containerapp000003:20230708001424884576\n2023/07/08 - 07:15:06 Successfully executed container: build\n2023/07/08 07:15:06 Executing - step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2023/07/08 - 07:15:06 Pushing image: containerapp000004.azurecr.io/containerapp000003:20230708001424884576, - attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/containerapp000003]\n5fa62d14d525: - Preparing\n526a382594b1: Preparing\n0952b6289d62: Preparing\nd6610a4343a7: - Preparing\na3262e06e330: Preparing\ncedd91c685c9: Preparing\n4b3ba104e9a8: - Preparing\ncedd91c685c9: Waiting\n4b3ba104e9a8: Waiting\nd6610a4343a7: Pushed\r\n" + string: "The push refers to repository [containerapp000004.azurecr.io/containerapp000003]\n44116755f7ca: + Preparing\n98d33e0c54d0: Preparing\n5ff9c7f01178: Preparing\nd20574564839: + Preparing\nd6b2f81086e4: Preparing\n333872f929fb: Preparing\n4b3ba104e9a8: + Preparing\n333872f929fb: Waiting\n4b3ba104e9a8: Waiting\n44116755f7ca: Pushed\n98d33e0c54d0: + Pushed\nd20574564839: Pushed\n5ff9c7f01178: Pushed\r\n" headers: accept-ranges: - bytes @@ -5423,25 +5715,25 @@ interactions: content-encoding: - utf-8 content-length: - - '806' + - '378' content-range: - - bytes 4641-5482/5483 + - bytes 5157-5546/5547 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:10 GMT + - Wed, 26 Jul 2023 05:20:02 GMT etag: - - '"0x8DB7F830FA126A9"' + - '"0x8DB8D97F649EBBE"' last-modified: - - Sat, 08 Jul 2023 07:15:08 GMT + - Wed, 26 Jul 2023 05:20:01 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '15' + - '16' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5461,11 +5753,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:10 GMT + - Wed, 26 Jul 2023 05:20:05 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5477,23 +5769,23 @@ interactions: content-encoding: - utf-8 content-length: - - '5483' + - '5569' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:10 GMT + - Wed, 26 Jul 2023 05:20:03 GMT etag: - - '"0x8DB7F830FA126A9"' + - '"0x8DB8D97F793EEA7"' last-modified: - - Sat, 08 Jul 2023 07:15:08 GMT + - Wed, 26 Jul 2023 05:20:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '15' + - '17' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5513,11 +5805,67 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:05 GMT + x-ms-range: + - bytes=5547-9642 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D + response: + body: + string: "333872f929fb: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '22' + content-range: + - bytes 5547-5568/5569 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:03 GMT + etag: + - '"0x8DB8D97F793EEA7"' + last-modified: + - Wed, 26 Jul 2023 05:20:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:20 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:05 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5529,23 +5877,23 @@ interactions: content-encoding: - utf-8 content-length: - - '5568' + - '5569' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:03 GMT etag: - - '"0x8DB7F8312B8A6C2"' + - '"0x8DB8D97F793EEA7"' last-modified: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '16' + - '17' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5565,17 +5913,14 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:13 GMT - x-ms-range: - - bytes=5483-9578 + - Wed, 26 Jul 2023 05:20:08 GMT x-ms-version: - '2018-11-09' - method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + method: HEAD + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: "5fa62d14d525: Pushed\n526a382594b1: Pushed\n0952b6289d62: Pushed\ncedd91c685c9: - Pushed\r\n" + string: '' headers: accept-ranges: - bytes @@ -5584,25 +5929,23 @@ interactions: content-encoding: - utf-8 content-length: - - '85' - content-range: - - bytes 5483-5567/5568 + - '5569' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:05 GMT etag: - - '"0x8DB7F8312B8A6C2"' + - '"0x8DB8D97F793EEA7"' last-modified: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '16' + - '17' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5612,8 +5955,8 @@ interactions: x-ms-version: - '2018-11-09' status: - code: 206 - message: Partial Content + code: 200 + message: OK - request: body: null headers: @@ -5622,11 +5965,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:10 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5638,23 +5981,23 @@ interactions: content-encoding: - utf-8 content-length: - - '5568' + - '5612' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:08 GMT etag: - - '"0x8DB7F8312B8A6C2"' + - '"0x8DB8D97F98C6787"' last-modified: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:06 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '16' + - '18' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5674,11 +6017,67 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:16 GMT + - Wed, 26 Jul 2023 05:20:10 GMT + x-ms-range: + - bytes=5569-9664 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D + response: + body: + string: "d6b2f81086e4: Pushed\n4b3ba104e9a8: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '43' + content-range: + - bytes 5569-5611/5612 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:08 GMT + etag: + - '"0x8DB8D97F98C6787"' + last-modified: + - Wed, 26 Jul 2023 05:20:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:20 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:10 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5690,23 +6089,23 @@ interactions: content-encoding: - utf-8 content-length: - - '5568' + - '5612' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:15 GMT + - Wed, 26 Jul 2023 05:20:08 GMT etag: - - '"0x8DB7F8312B8A6C2"' + - '"0x8DB8D97F98C6787"' last-modified: - - Sat, 08 Jul 2023 07:15:13 GMT + - Wed, 26 Jul 2023 05:20:06 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '16' + - '18' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5726,11 +6125,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:13 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5742,23 +6141,23 @@ interactions: content-encoding: - utf-8 content-length: - - '6878' + - '6880' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:10 GMT etag: - - '"0x8DB7F8314EC45B6"' + - '"0x8DB8D97FB3F5604"' last-modified: - - Sat, 08 Jul 2023 07:15:17 GMT + - Wed, 26 Jul 2023 05:20:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '18' + - '20' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5780,29 +6179,28 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:13 GMT x-ms-range: - - bytes=5568-9663 + - bytes=5612-9707 x-ms-version: - '2018-11-09' method: GET - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: - string: "4b3ba104e9a8: Pushed\na3262e06e330: Pushed\n20230708001424884576: digest: - sha256:4926c0610d1fa53d22ee695ad6bc2675dd81032429b0f5fa35d4b05256b516c6 size: - 1786\n2023/07/08 07:15:14 Successfully pushed image: containerapp000004.azurecr.io/containerapp000003:20230708001424884576\n2023/07/08 - 07:15:14 Step ID: build marked as successful (elapsed time in seconds: 35.378757)\n2023/07/08 - 07:15:14 Populating digests for step ID: build...\n2023/07/08 07:15:16 Successfully - populated digests for step ID: build\n2023/07/08 07:15:16 Step ID: push marked - as successful (elapsed time in seconds: 8.602040)\n2023/07/08 07:15:16 The - following dependencies were found:\n2023/07/08 07:15:16 \n- image:\n registry: + string: "20230725221919927360: digest: sha256:e343907c85f0a02d4ebf5786d6e3985a53ae6864b48f9c992f57dd622a66ffa8 + size: 1786\n2023/07/26 05:20:07 Successfully pushed image: containerapp000004.azurecr.io/containerapp000003:20230725221919927360\n2023/07/26 + 05:20:07 Step ID: build marked as successful (elapsed time in seconds: 35.013312)\n2023/07/26 + 05:20:07 Populating digests for step ID: build...\n2023/07/26 05:20:09 Successfully + populated digests for step ID: build\n2023/07/26 05:20:09 Step ID: push marked + as successful (elapsed time in seconds: 9.694228)\n2023/07/26 05:20:09 The + following dependencies were found:\n2023/07/26 05:20:09 \n- image:\n registry: containerapp000004.azurecr.io\n repository: containerapp000003\n tag: - \"20230708001424884576\"\n digest: sha256:4926c0610d1fa53d22ee695ad6bc2675dd81032429b0f5fa35d4b05256b516c6\n + \"20230725221919927360\"\n digest: sha256:e343907c85f0a02d4ebf5786d6e3985a53ae6864b48f9c992f57dd622a66ffa8\n \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: dotnet/aspnet\n - \ tag: \"6.0\"\n digest: sha256:f383408c6be95a4a13edaecd3f5ff1aa8c9aebf29820d69b603367aa392dbbdd\n + \ tag: \"6.0\"\n digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\n \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: - dotnet/sdk\n tag: \"6.0\"\n digest: sha256:017deb67e5f21988120b322735d0c24beba3daf02e02b31dea4aea243a37a3e8\n + dotnet/sdk\n tag: \"6.0\"\n digest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\n \ git: {}\n\r\nRun ID: ca1 was successful after 49s\r\n" headers: accept-ranges: @@ -5812,25 +6210,25 @@ interactions: content-encoding: - utf-8 content-length: - - '1286' + - '1244' content-range: - - bytes 5568-6877/6878 + - bytes 5612-6879/6880 content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:10 GMT etag: - - '"0x8DB7F8314EC45B6"' + - '"0x8DB8D97FB3F5604"' last-modified: - - Sat, 08 Jul 2023 07:15:17 GMT + - Wed, 26 Jul 2023 05:20:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '18' + - '20' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5852,11 +6250,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) x-ms-date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:13 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://eusmanaged185.blob.core.windows.net/9274f3ccc6524546acd0888efecf0d42-hxphpjjbtb/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-08T08%3A24%3A28Z&sr=b&sp=r&sig=0Lo6JRyJBWcvWX1HaMARm9FhmuqT9nkbPzB%2BHYMOkOI%3D + uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D response: body: string: '' @@ -5868,23 +6266,23 @@ interactions: content-encoding: - utf-8 content-length: - - '6878' + - '6880' content-type: - text/plain; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:18 GMT + - Wed, 26 Jul 2023 05:20:11 GMT etag: - - '"0x8DB7F8314EC45B6"' + - '"0x8DB8D97FB3F5604"' last-modified: - - Sat, 08 Jul 2023 07:15:17 GMT + - Wed, 26 Jul 2023 05:20:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-committed-block-count: - - '18' + - '20' x-ms-blob-type: - AppendBlob x-ms-creation-time: - - Sat, 08 Jul 2023 07:14:28 GMT + - Wed, 26 Jul 2023 05:19:20 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -5902,13 +6300,13 @@ interactions: body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "RjdfeoTxKBxsazLuQQJe5MDKQpv6osRoh/21ynTNrd+ACRCRJDUn"}], "activeRevisionsMode": + "value": "ZDCbGv2gjdgvsRQVKQkFGunFf5ePsb15Xx2PEyPYND+ACRC3uMxK"}], "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": - "containerapp000004.azurecr.io/containerapp000003:20230708001424884576", "name": + "containerapp000004.azurecr.io/containerapp000003:20230725221919927360", "name": "containerapp000003", "command": null, "args": null, "env": null, "resources": null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' @@ -5935,35 +6333,37 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:22.7721127Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:22.7721127Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.214.222"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-ec4abd84.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230708001424884576","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:12.2342267Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:12.2342267Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.212.62"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.gentleisland-84c6c061.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221919927360","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '2402' + - '2403' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:26 GMT + - Wed, 26 Jul 2023 05:20:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-async-operation-timeout: - PT15M x-ms-ratelimit-remaining-subscription-resource-requests: - '699' + x-msedge-ref: + - 'Ref A: 4BA051594E644878A13C42A1D3A32AF4 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:20:11Z' x-powered-by: - ASP.NET status: @@ -5986,10 +6386,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c","name":"689abb14-5d2f-44a5-a5e2-2de943984e2c","status":"InProgress","startTime":"2023-07-08T07:15:23.6512012"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249","name":"b385eef9-489b-4079-aa78-8072a4bf0249","status":"InProgress","startTime":"2023-07-26T05:20:13.1356638"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -6001,21 +6401,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:27 GMT + - Wed, 26 Jul 2023 05:20:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 90A30F6884BA4F04BD6344E875F6C566 Ref B: CO6AA3150220039 Ref C: 2023-07-26T05:20:15Z' x-powered-by: - ASP.NET status: @@ -6038,10 +6438,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c","name":"689abb14-5d2f-44a5-a5e2-2de943984e2c","status":"InProgress","startTime":"2023-07-08T07:15:23.6512012"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249","name":"b385eef9-489b-4079-aa78-8072a4bf0249","status":"InProgress","startTime":"2023-07-26T05:20:13.1356638"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -6053,21 +6453,73 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:30 GMT + - Wed, 26 Jul 2023 05:20:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 03384880D3D04B09A6FE04C2E1851A9A Ref B: CO6AA3150217017 Ref C: 2023-07-26T05:20:18Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249","name":"b385eef9-489b-4079-aa78-8072a4bf0249","status":"InProgress","startTime":"2023-07-26T05:20:13.1356638"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1AC657FF0D1743D1927BE2575D688B82 Ref B: CO6AA3150220017 Ref C: 2023-07-26T05:20:21Z' x-powered-by: - ASP.NET status: @@ -6090,10 +6542,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/689abb14-5d2f-44a5-a5e2-2de943984e2c","name":"689abb14-5d2f-44a5-a5e2-2de943984e2c","status":"Succeeded","startTime":"2023-07-08T07:15:23.6512012"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249","name":"b385eef9-489b-4079-aa78-8072a4bf0249","status":"Succeeded","startTime":"2023-07-26T05:20:13.1356638"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -6105,21 +6557,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:33 GMT + - Wed, 26 Jul 2023 05:20:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1C44F7CB6E184DAF9E7E4A15BD7BEC98 Ref B: CO6AA3150220021 Ref C: 2023-07-26T05:20:24Z' x-powered-by: - ASP.NET status: @@ -6146,7 +6598,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:22.7721127","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:22.7721127"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.214.222"],"latestRevisionName":"containerapp000003--6odmw8u","latestReadyRevisionName":"containerapp000003--6odmw8u","latestRevisionFqdn":"containerapp000003--6odmw8u.proudocean-ec4abd84.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-ec4abd84.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230708001424884576","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:12.2342267","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:12.2342267"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.212.62"],"latestRevisionName":"containerapp000003--b65gsrd","latestReadyRevisionName":"containerapp000003--b65gsrd","latestRevisionFqdn":"containerapp000003--b65gsrd.gentleisland-84c6c061.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.gentleisland-84c6c061.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221919927360","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -6154,25 +6606,25 @@ interactions: cache-control: - no-cache content-length: - - '2533' + - '2536' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:35 GMT + - Wed, 26 Jul 2023 05:20: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-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 012600107C6A4BBB8E5D7EE72A45DA48 Ref B: CO6AA3150219025 Ref C: 2023-07-26T05:20:25Z' x-powered-by: - ASP.NET status: @@ -6290,17 +6742,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:35 GMT + - Wed, 26 Jul 2023 05:20:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 329FB2D974934C34B62D493A6CF0299B Ref B: CO6AA3150217031 Ref C: 2023-07-26T05:20:26Z' status: code: 200 message: OK @@ -6324,7 +6778,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:15:22.7721127","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:15:22.7721127"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.214.222"],"latestRevisionName":"containerapp000003--6odmw8u","latestReadyRevisionName":"containerapp000003--6odmw8u","latestRevisionFqdn":"containerapp000003--6odmw8u.proudocean-ec4abd84.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-ec4abd84.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230708001424884576","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:12.2342267","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:12.2342267"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.212.62"],"latestRevisionName":"containerapp000003--b65gsrd","latestReadyRevisionName":"containerapp000003--b65gsrd","latestRevisionFqdn":"containerapp000003--b65gsrd.gentleisland-84c6c061.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.gentleisland-84c6c061.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221919927360","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -6332,25 +6786,25 @@ interactions: cache-control: - no-cache content-length: - - '2533' + - '2536' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:15:37 GMT + - Wed, 26 Jul 2023 05:20:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3A950137911C4FCCAB53BCA644F0B3A6 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:20:27Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml new file mode 100644 index 00000000000..782ae30b3c1 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml @@ -0,0 +1,13355 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 27359B568CF84D47BC86078694B5871E Ref B: CO6AA3150218039 Ref C: 2023-07-26T05:18:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6C792429FCB54437BD505BAFA4F32AAE Ref B: CO6AA3150217011 Ref C: 2023-07-26T05:18:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 86E1DC536E554E0CA6CADE4DE7219D68 Ref B: CO6AA3150218049 Ref C: 2023-07-26T05:18:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 43F2CB8E6143482F94EB44862A48EDBB Ref B: CO6AA3150218027 Ref C: 2023-07-26T05:18:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 364D045C48EA4E02BC3D369E534D5CED Ref B: CO6AA3150218029 Ref C: 2023-07-26T05:18:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 028F2F0295E24B8AB43F418610F5DF7E Ref B: CO6AA3150217009 Ref C: 2023-07-26T05:18:13Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.9786248Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.9786248Z","modifiedDate":"2023-07-26T05:18:14.9786248Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz","name":"workspace-clitestrgn37hfrmloz6jtk2snhwvz","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz?api-version=2021-12-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 0F2C350CBC0D4BC2BDE80C2AB0B3CE3E Ref B: CO6AA3150217035 Ref C: 2023-07-26T05:18:13Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.9786248Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.9786248Z","modifiedDate":"2023-07-26T05:18:14.9786248Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz","name":"workspace-clitestrgn37hfrmloz6jtk2snhwvz","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 7D3ED990E7C046D68D818BAF1B84A8E2 Ref B: CO6AA3150217035 Ref C: 2023-07-26T05:18:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz/sharedKeys?api-version=2020-08-01 + response: + body: + string: '{"primarySharedKey":"KrI6O/6tAxPzeZACglLVwrBfxvFjXUknWjMH33S520rLgDLZXyDko7mkOf7PAYzR63fpiUSqeCVvAmWazq73Iw==","secondarySharedKey":"1YJ0KE3payjYh6dnPBE94Ri5t8PfTusBgrXYUY3kqVodsuuEv88uA2QeKny/HVyjqfYXWCCV+NP51eITI0cBKg=="}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + cache-control: + - no-cache + content-length: + - '223' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 35D562AD4B614FEE9C006BF721046632 Ref B: CO6AA3150219053 Ref C: 2023-07-26T05:18:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "f8cac130-09ba-4304-89fe-4fbd39ce3fc1", + "sharedKey": "KrI6O/6tAxPzeZACglLVwrBfxvFjXUknWjMH33S520rLgDLZXyDko7mkOf7PAYzR63fpiUSqeCVvAmWazq73Iw=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '450' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-msedge-ref: + - 'Ref A: 0A950AF58DA44580BF504DB8590CB9F0 Ref B: CO6AA3150219047 Ref C: 2023-07-26T05:18:16Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E0FD512875B147C09144DE1921164FFC Ref B: CO6AA3150220031 Ref C: 2023-07-26T05:18:22Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6732E0DD930A44AF824559C9678D9878 Ref B: CO6AA3150217037 Ref C: 2023-07-26T05:18:25Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 71C40C50D37C4E688006F09BD2EB1A6A Ref B: CO6AA3150219011 Ref C: 2023-07-26T05:18:28Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 9875BEE36EB64DB6BE522B461F84C634 Ref B: CO6AA3150217033 Ref C: 2023-07-26T05:18:32Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B42C776F1B1D4AF188B538E9092052B6 Ref B: CO6AA3150218053 Ref C: 2023-07-26T05:18:34Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 67E981FD27D443ABBD6932B79CA4E731 Ref B: CO6AA3150220037 Ref C: 2023-07-26T05:18:38Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6A4D9B5C635A4ABBB7773F787358A3F3 Ref B: CO6AA3150217037 Ref C: 2023-07-26T05:18:41Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E5932CA0FF7D4BDF89CE773F15B14559 Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:18:44Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 45AAFB82F8CA4919956AE9457763AC5F Ref B: CO6AA3150220051 Ref C: 2023-07-26T05:18:47Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 93F19E8F4B6B4878A1C65104445B4B73 Ref B: CO6AA3150220021 Ref C: 2023-07-26T05:18:50Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 12732FFC8FD7439A8797619F895CA2CA Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:18:53Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 40C1D932E1E147848571BCAAAD308D7D Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:55Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D5A375CCB4A84C29B881A9CEDD0D08E0 Ref B: CO6AA3150218035 Ref C: 2023-07-26T05:18:57Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 2F65C86664984B5DBDC579AB84041449 Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:19:00Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"Succeeded","startTime":"2023-07-26T05:18:22.4805946"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 61BE9DF778544D63A76ECF33E80642AD Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:03Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: CF610D19B3C248E38804741586C3C4E1 Ref B: CO6AA3150220051 Ref C: 2023-07-26T05:19:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true, "anonymousPullEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1cfd1a7-2b73-11ee-88a6-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1380' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 541C75830989429FAE0A614150348C8D Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:05Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1cfd1a7-2b73-11ee-88a6-bce92fa43675?api-version=2022-02-01-preview + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1cfd1a7-2b73-11ee-88a6-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0532CF0B75AB45D59EC625F7EA2B6E86 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 4C770B40313643B788FD0F4FEB54E376 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 3523524EB6624340A378079666195618 Ref B: CO6AA3150218037 Ref C: 2023-07-26T05:19:14Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview + response: + body: + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"U3lgRQcQqyXe7nEaMgmlyO7TY0wpgqbpgHiNAsVqOb+ACRCuEYve"},{"name":"password2","value":"dfCrDTyOVXk53smWpTYsGGbDOpEH5e1EIQPo9+oVfJ+ACRC0siK+"}]}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '214' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: E54CC92E84634DFAB0EE7489AECB1527 Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:19:15Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: F37C7C4808DD4931B947F65F5319816A Ref B: CO6AA3150220047 Ref C: 2023-07-26T05:19:15Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 30DB787F862E476DA63DE9DF345B0C34 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 90174836D23F4436A27C74EB3F3C3ED5 Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:19:17Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 38611756FE694E2198507C1254442C89 Ref B: CO6AA3150218037 Ref C: 2023-07-26T05:19:17Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 05:19:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B9165BBE51264D86AC136013098BC0D8 Ref B: CO6AA3150217025 Ref C: 2023-07-26T05:19:18Z' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D60F6BE0F375463E97684095C9759380 Ref B: CO6AA3150218045 Ref C: 2023-07-26T05:19:18Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '234' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 5607B549FAF14739B9028DD0487BAE52 Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:19:19Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '5906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 25E55E2A637447D8A7EA98D0DDB9BE07 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - '2022-12-01' + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: CE104000002C482CBD3C778131DF46B5 Ref B: CO6AA3150220027 Ref C: 2023-07-26T05:19:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 69509A02264741F8AEEF1899A0B95421 Ref B: CO6AA3150219025 Ref C: 2023-07-26T05:19:20Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 05:19:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: DED4EBBEA17C4DC8ADAAE7FE474AB8C8 Ref B: CO6AA3150218009 Ref C: 2023-07-26T05:19:20Z' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list + response: + body: + string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n + \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n + \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n + \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n + \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n + \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n + \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n + \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n + \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n + \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n + \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n + \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n + \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n + \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n + \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n + \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n + \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n + \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n + \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n + \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n + \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n + \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n + \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n + \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n + \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n + \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n + \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n + \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n + \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n + \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n + \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n + \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n + \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n + \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n + \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n + \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n + \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n + \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n + \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n + \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n + \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n + \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n + \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n + \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n + \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n + \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n + \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n + \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n + \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n + \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n + \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n + \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n + \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n + \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n + \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n + \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n + \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n + \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ ]\n}" + headers: + cache-control: + - max-age=300 + content-length: + - '5624' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:20 GMT + etag: + - '0x8DB8D97AC6B43E5' + last-modified: + - Wed, 26 Jul 2023 05:17:57 GMT + x-cache: + - TCP_MISS + x-mcr-privacy: + - https://privacy.microsoft.com/en-us/privacystatement + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + x-msedge-ref: + - 'Ref A: 06A81F50723042388BE55570019C9853 Ref B: CO1EDGE1412 Ref C: 2023-07-26T05:19:20Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list + response: + body: + string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n + \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n + \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n + \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n + \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n + \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n + \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n + \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n + \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n + \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n + \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n + \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n + \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n + \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n + \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n + \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n + \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n + \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n + \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n + \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n + \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n + \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n + \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n + \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n + \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n + \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n + \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n + \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n + \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n + \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n + \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n + \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n + \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n + \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n + \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n + \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n + \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n + \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n + \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n + \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n + \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n + \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n + \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n + \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n + \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n + \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n + \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n + \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n + \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n + \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n + \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n + \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n + \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n + \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n + \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n + \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n + \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n + \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ ]\n}" + headers: + cache-control: + - max-age=300 + content-length: + - '5624' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:22 GMT + etag: + - '0x8DB8D97AC6B43E5' + last-modified: + - Wed, 26 Jul 2023 05:17:57 GMT + x-cache: + - TCP_MISS + x-mcr-privacy: + - https://privacy.microsoft.com/en-us/privacystatement + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + x-msedge-ref: + - 'Ref A: D39AE05E171840E38BD209C442DB9495 Ref B: CO1EDGE2718 Ref C: 2023-07-26T05:19:22Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvv6nyarykwraocx2cfvnpuso6mknu4cs3budqokphkllbch3y6ogvyatpzdsztvav/providers/Microsoft.ContainerRegistry/registries/containerapp6mfrefs64x3m","name":"containerapp6mfrefs64x3m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6516' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 1CDBF77D09CC4734A0DCE133991A14FD Ref B: CO6AA3150217023 Ref C: 2023-07-26T05:19:28Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 700825820FA3447796F08E06C85A98AE Ref B: CO6AA3150220009 Ref C: 2023-07-26T05:19:28Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"status": "Enabled", "platform": + {"os": "linux", "architecture": "amd64"}, "agentConfiguration": {"cpu": 2}, + "timeout": 3600, "step": {"type": "EncodedTask", "encodedTaskContent": "dmVyc2lvbjogdjEuMS4wCnZlcnNpb246IHYxLjEuMApzdGVwczoKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vb3J5eC9jbGk6ZGViaWFuLWJ1c3Rlci0yMDIzMDIyMi4xIG9yeXggZG9ja2VyZmlsZSAtLWJpbmQtcG9ydCA4MDgwIC0tb3V0cHV0IC4vRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gYnVpbGQ6IC10ICRSZWdpc3RyeS9jb250YWluZXJhcHBvNnVkdGxlZDd5NzM6MjAyMzA3MjUyMjE5MjIwNjQxNjIgLWYgRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gcHVzaDogWyIkUmVnaXN0cnkvY29udGFpbmVyYXBwbzZ1ZHRsZWQ3eTczOjIwMjMwNzI1MjIxOTIyMDY0MTYyIl0KICAgIHRpbWVvdXQ6IDE4MDAK", + "values": []}, "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", + "updateTriggerPayloadType": "Default", "status": "Enabled", "name": "defaultBaseimageTriggerName"}}, + "credentials": {}, "isSystemTask": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2023-07-26T05:19:30.0618784+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnZlcnNpb246IHYxLjEuMApzdGVwczoKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vb3J5eC9jbGk6ZGViaWFuLWJ1c3Rlci0yMDIzMDIyMi4xIG9yeXggZG9ja2VyZmlsZSAtLWJpbmQtcG9ydCA4MDgwIC0tb3V0cHV0IC4vRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gYnVpbGQ6IC10ICRSZWdpc3RyeS9jb250YWluZXJhcHBvNnVkdGxlZDd5NzM6MjAyMzA3MjUyMjE5MjIwNjQxNjIgLWYgRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gcHVzaDogWyIkUmVnaXN0cnkvY29udGFpbmVyYXBwbzZ1ZHRsZWQ3eTczOjIwMjMwNzI1MjIxOTIyMDY0MTYyIl0KICAgIHRpbWVvdXQ6IDE4MDAK","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp","name":"cli_build_containerapp","location":"eastus","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:29.7742476+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:29.7742476+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '1491' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: EF5E030DE2E540E7BFC3CAEF684ACF16 Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:19:29Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvv6nyarykwraocx2cfvnpuso6mknu4cs3budqokphkllbch3y6ogvyatpzdsztvav/providers/Microsoft.ContainerRegistry/registries/containerapp6mfrefs64x3m","name":"containerapp6mfrefs64x3m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6516' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview + response: + body: + string: '{"uploadUrl":"https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/source/202307260000/f765ee29-7993-433e-8f4c-c6b5e113a46a.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A41Z&sr=b&sp=cw&sig=NFfZL71DCuRdaISZo2qe606NrFpZGonCh2cWAhl5RaQ%3D","relativePath":"source/202307260000/f765ee29-7993-433e-8f4c-c6b5e113a46a.tar.gz"}' + headers: + cache-control: + - no-cache + content-length: + - '351' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: !!binary | + H4sICO6swGQC/2NsaV9zb3VyY2VfYXJjaGl2ZV9hNmNhY2YyMzJhNjc0ZTdhOTkwMDEzNWU3MTU4 + OTRmYi50YXIA7Vzrb9s4Es/nAP0fpt5byO3ash5+JG6Svb022y7Q6wZtD4fD4bBQJNpmI0s6knLi + 7Wb/9huSkqO46RO1c23nlw+RhxzO8DEcciTS7bm9v55EF09YlDCxsxF4Fm/773lh/+pZ032/Pwh2 + 4GJnCyiligSK/9yV/EIQ7MFc8Tk79Id7Q29/sLcfuKPBftAPg90dwleP3hZkaHsYjUZvt/83nkfB + yNuBAdn/xuHS/E/zP83/3yyionBfyc3P/8Ph8G32H3jDYM3+vTAY7YBH9r9xLCIBsWCRYsdC5AIO + QbD/llywtjNTqugyTZXOvQe7Oie7KASTspmrItU5ikjNmsn6d50W5/kZZyeRkOyaIEvvFiahzpzm + 0+n1bPNcTKNMp5sMPEvYxfO8VNdzuT2habJn0uvSSixZviOzSV8VjUaBuaqatTW114MFZ+fAsinP + GEimymJX2w4+tR2dJJ2Oqbz7KudZ+7ffEi6yaM46UKXew2KuMVRlIZvDXlnZOh01adu6t52ELVZ8 + ml5phAabZ+2bEkqRsizOE5a0X6P+imEbJGOYRKlkcNnkaPbFjUWhWSget2+uUlGepjxG3ZpaOz2s + S6NXGoU6VQN3mh1RtWscqXgGfa8PUZbAJBfnkUhA5WCGHsyQmjKxKmpSZrHiWH/sxA72pOxAhjW9 + B693wTy1G8O5jcVqHS8rWe8pEpN1kW+Wi6zYbzgmY2zJDuRZuoRC5Aue8GxalcozwP5iaV7MWaaQ + CctwLYc7xxaNpkwPKiHqXw+u52FX9udqzaZ6oLAMRwAcHh6C0yjcgR91QTCG15dYMaOf0H0tQM1Y + pU+BIioJui9LqatXPcIff8DA8+7VKlhmFKc5nbrB5nlSpszFEZELpY0e1XpAq4KvCrT+p/U/rf+/ + XZzybOMhoE+I/4yGPsV/aP6n/qf5n7Dp+f/8/Pw24z+hNxqux38G4ZDiP9vAd3dxay56ehjgXhOy + PGG4U75/fxfuw9/N/g93tYXeHmYxx50i0nvNIMlVKMXtIaWOtyTstJw2kw3Budd25ssqwoC5x5KJ + xVXIRwec1gNQJi5S6fMYt+B6KwoTkc8B1eUiz/R+2EQOpMoF07vw4yqCcaWqYTrEyol5lPLf2Qn+ + buP+PdbZsBz35NfnL/We2Amx65xmpEaz6sgO/mto8tCEGODJy5cnYOvQkGYJKE/r79poxAtDa2Ox + jVKecqlYBnlWxRJYYuTo+AJEaQoZU+e5OMM6KSYmUbxq/kpkavjblW4VMc/qbbwux0RBridaLp5N + TYan9a+GXs/qdoLINh0qkONzVs5PmehgSwtkQG5hI0uVVnUYZa2dF1FqgyiNnjChvl8yk9gBXwci + MAOfQJvLZ9EzWyXLZYIbOuyEjcMLZiiCqVJkWGCqAxiXNa8p/OgQvAanoVnFm6yavOKtaKYuD3Yv + V+1wvNBjy7YXdugE69vocWiZZm4B09nW26Bq+rbJY/XRKpqfrlzKWHfwXR3XseU7tc5qJvJzG8JZ + KahbDi00wZZTy4Llk6odNbvtDMfw/gjOCbYROPCDyWGIYyTq3DWxDhjZKBjIgsV8wuOqnlayhHOu + ZmhnHC0/XUIVsZLIKTElntU10bHGWvM4kij6+KeHD49fOGNDQmKeyVwHkUxrmEr8gKpUNi6BpWyB + 9oGdK/iCpwyFOCYspbEy0Quu2v6KfIomdfbgmsxHj57/8uwfL47fJ5dLtCxkT5Z6pigl+xhhCZtE + ZapqEW/01IePnJUNvnX0rOyyfWU8UZLoaaWyZf2rCk/fNEJs5htGSFGPEJ2jHiFFPUI00a2tw0za + bWeli56YdCYtSQcJaYVI8T/a/9H+j/DFoojiM/Ts5pXiLe3/PG3sa/Y/wH+0/9sC9NqipZfXrTG0 + mnuzVken4EJD4oJEJ3ou/lmqXqvhog2pSpTMkGQseKEkkuxisKWbVWk+vaUEt1cFGlp6pWQ4mtvK + K7Zr3wJo9j99t+/2jVzDhCsSQw7cobtfk9kruSL6K6Kti0nou34jpfFlQyVi6IZ1ov3MoKLvI1O1 + tiP/T/6f/D/hK/P/5kuezb4C/Oj3f77XH47o/R/N/9T/NP8TtjD/S7VMmZwxpmRvI/b/cfN/6PVD + mv9p/qf+p/mfsOX53zy7sZSf0/7fFf/zB6M1+++PAor/bQWnebI0sbciSvRhhjEMvOJCv/yb5Jka + g98vLqD1tIx5EsFjEWUJa3XgCUsXTPE46sBPgut3+DLKZFcywSfmDXpkyozzNBdj+M7z/jb6+Wd6 + YUj+n/w/+X/C/xGq848blfEJ8b9BGND+j+Z/6n+a/wlbmP/Nse1NXQTxvv1f6A/W7D/wR/T9/1bw + Ybc6iPrmhPp2AHuC316NcB8eH7+EWT5n5sy5qz9ltQz2DLu+FuCdp/abJ9DtrQ0deA2Kq5SNwak+ + 53fg8q3n0q00OppO/p/sn/w/4eP9v7mW5fb8f7ju/4OA/P+X5f/NCDJHXng2/bQ1gMQ1QNvBpyLP + EnsCKdIJeSli5pD3J/9P9k/+n/BZ5399Od2Gb4D5hPhv2B9S/Jfmf+p/mv8Jm5//7WF+dkv7Pz8I + Kf57SziY+UcH3x/WNzzA90cHPSTtHswCQ68urLC3hprEABNxE3g9NT4ziZpO0wbt/8j/k/8nfDn+ + 377+vS3/H4bDN/z/MCD/vxX/f/fRrw9f/uvkGGZqnmq/b/4BHMzQIxyZI/EH5lWscfjmybh6S7Pp + Kc/OQLD00Ln6jtyBmWCTQ+fmT8sd6BkhvVrKgf4QuSquWpJcydILEpNSHP2TpbF+06xyuJ6nsOXZ + YpDFVIPsm/w/2f8H+v997Ie90chzw1HfC70+Wc83ADUvwiw9S85P443JeJ//Hwz8dfsPhwPy/1tZ + /9kLfsaw8F3f9e7sSsUKOb6DzrQL8TwZwzwW7pzHIpf5RLnofHu5WF704pSPE3bKo6x7im3IRDfw + gtALgsD1QeeAJI/PmJhwdNDdrr4ysGtuGdzz9jwk5KUqSgVu79FVNveOvQIT5yNMHkOwt+d5VpXT + kqeoTFfBX56zKZdKLHtxnqmIZ0xERZEPywSXAsloOQrHRpNRMAgCfz8IvGEfl5PQncCHiSpKORvD + v1ufKKj1n7WifVMyTTUEAoFAIBAIBAKBQCAQCAQCgUAgEAgEAoFAIBAIBAKBQCAQCITPgP8BbYQa + HgCgAAA= + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '2456' + Content-Type: + - application/octet-stream + User-Agent: + - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-version: + - '2022-11-02' + method: PUT + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/source/202307260000/f765ee29-7993-433e-8f4c-c6b5e113a46a.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A41Z&sr=b&sp=cw&sig=NFfZL71DCuRdaISZo2qe606NrFpZGonCh2cWAhl5RaQ%3D + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - rxGF3WO4fPUm2UF/Rf2CWA== + date: + - Wed, 26 Jul 2023 05:19:41 GMT + etag: + - '"0x8DB8D97EAC7475E"' + last-modified: + - Wed, 26 Jul 2023 05:19:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - hLivWi/uaz8= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2022-11-02' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp/listDetails?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2023-07-26T05:19:30.0618784+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnZlcnNpb246IHYxLjEuMApzdGVwczoKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vb3J5eC9jbGk6ZGViaWFuLWJ1c3Rlci0yMDIzMDIyMi4xIG9yeXggZG9ja2VyZmlsZSAtLWJpbmQtcG9ydCA4MDgwIC0tb3V0cHV0IC4vRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gYnVpbGQ6IC10ICRSZWdpc3RyeS9jb250YWluZXJhcHBvNnVkdGxlZDd5NzM6MjAyMzA3MjUyMjE5MjIwNjQxNjIgLWYgRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gcHVzaDogWyIkUmVnaXN0cnkvY29udGFpbmVyYXBwbzZ1ZHRsZWQ3eTczOjIwMjMwNzI1MjIxOTIyMDY0MTYyIl0KICAgIHRpbWVvdXQ6IDE4MDAK","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp","name":"cli_build_containerapp","location":"eastus","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:29.7742476+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:29.7742476+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '1491' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"type": "TaskRunRequest", "isArchiveEnabled": false, "taskId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp", + "overrideTaskStepProperties": {"contextPath": "source/202307260000/f765ee29-7993-433e-8f4c-c6b5e113a46a.tar.gz", + "file": "C:\\Users\\snehapar\\AppData\\Local\\Temp\\tmp3nlkdwbc", "arguments": + [], "values": []}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '458' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-26T05:19:43+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:42.8480882+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview + response: + body: + string: '{"logLink":"https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D"}' + headers: + cache-control: + - no-cache + content-length: + - '228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:43 GMT + etag: + - '"0x8DB8D97EBBCA12E"' + last-modified: + - Wed, 26 Jul 2023 05:19:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:43 GMT + etag: + - '"0x8DB8D97EBBCA12E"' + last-modified: + - Wed, 26 Jul 2023 05:19:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:45 GMT + x-ms-range: + - bytes=0-4095 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "2023/07/26 05:19:43 Downloading source code...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-range: + - bytes 0-47/48 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:43 GMT + etag: + - '"0x8DB8D97EBBCA12E"' + last-modified: + - Wed, 26 Jul 2023 05:19:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:46 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:43 GMT + etag: + - '"0x8DB8D97EBBCA12E"' + last-modified: + - Wed, 26 Jul 2023 05:19:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1416' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:46 GMT + etag: + - '"0x8DB8D97ED6F93A0"' + last-modified: + - Wed, 26 Jul 2023 05:19:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:48 GMT + x-ms-range: + - bytes=48-4143 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "2023/07/26 05:19:44 Finished downloading source code\r\n2023/07/26 + 05:19:44 Alias support enabled for version >= 1.1.0, please see https://aka.ms/acr/tasks/task-aliases + for more information.\n2023/07/26 05:19:44 Creating Docker network: acb_default_network, + driver: 'bridge'\n2023/07/26 05:19:45 Successfully set up Docker network: + acb_default_network\n2023/07/26 05:19:45 Setting up Docker configuration...\n2023/07/26 + 05:19:45 Successfully set up Docker configuration\n2023/07/26 05:19:45 Logging + in to registry: containerapp000004.azurecr.io\n2023/07/26 05:19:46 Successfully + logged into containerapp000004.azurecr.io\n2023/07/26 05:19:46 Executing step + ID: acb_step_0. Timeout(sec): 28800, Working directory: '', Network: 'acb_default_network'\n2023/07/26 + 05:19:46 Launching container with name: acb_step_0\nUnable to find image 'mcr.microsoft.com/oryx/cli:debian-buster-20230222.1' + locally\ndebian-buster-20230222.1: Pulling from oryx/cli\nb2404786f3fe: Pulling + fs layer\ne97ef50ee5a8: Pulling fs layer\ndfb1477a1a0e: Pulling fs layer\n69fefe447a70: + Pulling fs layer\n75c028bd406f: Pulling fs layer\n69285aafba30: Pulling fs + layer\n5ec5a733efd1: Pulling fs layer\n940e5351b949: Pulling fs layer\n75c028bd406f: + Waiting\n69285aafba30: Waiting\n69fefe447a70: Waiting\n5ec5a733efd1: Waiting\n940e5351b949: + Waiting\ne97ef50ee5a8: Verifying Checksum\ne97ef50ee5a8: Download complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1356' + content-range: + - bytes 48-1415/1416 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:46 GMT + etag: + - '"0x8DB8D97ED6F93A0"' + last-modified: + - Wed, 26 Jul 2023 05:19:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1416' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:46 GMT + etag: + - '"0x8DB8D97ED6F93A0"' + last-modified: + - Wed, 26 Jul 2023 05:19:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:50 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1416' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:48 GMT + etag: + - '"0x8DB8D97ED6F93A0"' + last-modified: + - Wed, 26 Jul 2023 05:19:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1985' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:51 GMT + etag: + - '"0x8DB8D97F05EF90D"' + last-modified: + - Wed, 26 Jul 2023 05:19:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:53 GMT + x-ms-range: + - bytes=1416-5511 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "dfb1477a1a0e: Verifying Checksum\ndfb1477a1a0e: Download complete\n75c028bd406f: + Verifying Checksum\n75c028bd406f: Download complete\nb2404786f3fe: Verifying + Checksum\nb2404786f3fe: Download complete\n69285aafba30: Verifying Checksum\n69285aafba30: + Download complete\n940e5351b949: Verifying Checksum\n940e5351b949: Download + complete\n69fefe447a70: Verifying Checksum\n69fefe447a70: Download complete\n5ec5a733efd1: + Verifying Checksum\n5ec5a733efd1: Download complete\nb2404786f3fe: Pull complete\r\ne97ef50ee5a8: + Pull complete\ndfb1477a1a0e: Pull complete\n69fefe447a70: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '569' + content-range: + - bytes 1416-1984/1985 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:51 GMT + etag: + - '"0x8DB8D97F05EF90D"' + last-modified: + - Wed, 26 Jul 2023 05:19:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1985' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:51 GMT + etag: + - '"0x8DB8D97F05EF90D"' + last-modified: + - Wed, 26 Jul 2023 05:19:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:56 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2098' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:54 GMT + etag: + - '"0x8DB8D97F19337F7"' + last-modified: + - Wed, 26 Jul 2023 05:19:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:56 GMT + x-ms-range: + - bytes=1985-6080 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "75c028bd406f: Pull complete\n69285aafba30: Pull complete\n5ec5a733efd1: + Pull complete\n940e5351b949: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '113' + content-range: + - bytes 1985-2097/2098 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:54 GMT + etag: + - '"0x8DB8D97F19337F7"' + last-modified: + - Wed, 26 Jul 2023 05:19:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:56 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2098' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:54 GMT + etag: + - '"0x8DB8D97F19337F7"' + last-modified: + - Wed, 26 Jul 2023 05:19:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:59 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2552' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:57 GMT + etag: + - '"0x8DB8D97F3A9857C"' + last-modified: + - Wed, 26 Jul 2023 05:19:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:59 GMT + x-ms-range: + - bytes=2098-6193 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Digest: sha256:cbfa4beec24c74057550bb121cb6ea0820af23416a90d1f52f2b01234d5fe934\nStatus: + Downloaded newer image for mcr.microsoft.com/oryx/cli:debian-buster-20230222.1\nDockerfile + written to '/workspace/Dockerfile'.\n2023/07/26 05:19:57 Successfully executed + container: acb_step_0\n2023/07/26 05:19:57 Executing step ID: acb_step_1. + Timeout(sec): 28800, Working directory: '', Network: 'acb_default_network'\n2023/07/26 + 05:19:57 Scanning for dependencies...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '454' + content-range: + - bytes 2098-2551/2552 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:57 GMT + etag: + - '"0x8DB8D97F3A9857C"' + last-modified: + - Wed, 26 Jul 2023 05:19:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:19:59 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2552' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:57 GMT + etag: + - '"0x8DB8D97F3A9857C"' + last-modified: + - Wed, 26 Jul 2023 05:19:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:02 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3621' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:00 GMT + etag: + - '"0x8DB8D97F4DF225B"' + last-modified: + - Wed, 26 Jul 2023 05:19:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:02 GMT + x-ms-range: + - bytes=2552-6647 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "2023/07/26 05:19:57 Successfully scanned dependencies\n2023/07/26 05:19:57 + Launching container with name: acb_step_1\nSending build context to Docker + daemon 16.38kB\r\r\nStep 1/10 : ARG RUNTIME=node:18\nStep 2/10 : FROM mcr.microsoft.com/oryx/cli:debian-bullseye-stable + as build\ndebian-bullseye-stable: Pulling from oryx/cli\n34df401c391c: Pulling + fs layer\n6fdd0e5b72cc: Pulling fs layer\n4f4fb700ef54: Pulling fs layer\n27afee16150d: + Pulling fs layer\n511c1db5fe39: Pulling fs layer\naef5a7f065ac: Pulling fs + layer\n379c662bf2c6: Pulling fs layer\n53047a51d46f: Pulling fs layer\n27afee16150d: + Waiting\n511c1db5fe39: Waiting\naef5a7f065ac: Waiting\n379c662bf2c6: Waiting\n53047a51d46f: + Waiting\n4f4fb700ef54: Verifying Checksum\n4f4fb700ef54: Download complete\n6fdd0e5b72cc: + Verifying Checksum\n6fdd0e5b72cc: Download complete\n511c1db5fe39: Verifying + Checksum\n511c1db5fe39: Download complete\n34df401c391c: Verifying Checksum\n34df401c391c: + Download complete\n27afee16150d: Verifying Checksum\n27afee16150d: Download + complete\n53047a51d46f: Verifying Checksum\n53047a51d46f: Download complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1069' + content-range: + - bytes 2552-3620/3621 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:00 GMT + etag: + - '"0x8DB8D97F4DF225B"' + last-modified: + - Wed, 26 Jul 2023 05:19:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:02 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3621' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:00 GMT + etag: + - '"0x8DB8D97F4DF225B"' + last-modified: + - Wed, 26 Jul 2023 05:19:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:05 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3780' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:03 GMT + etag: + - '"0x8DB8D97F63D2871"' + last-modified: + - Wed, 26 Jul 2023 05:20:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:05 GMT + x-ms-range: + - bytes=3621-7716 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "aef5a7f065ac: Verifying Checksum\naef5a7f065ac: Download complete\n379c662bf2c6: + Verifying Checksum\n379c662bf2c6: Download complete\n34df401c391c: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '159' + content-range: + - bytes 3621-3779/3780 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:03 GMT + etag: + - '"0x8DB8D97F63D2871"' + last-modified: + - Wed, 26 Jul 2023 05:20:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:05 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3865' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:03 GMT + etag: + - '"0x8DB8D97F7B50206"' + last-modified: + - Wed, 26 Jul 2023 05:20:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:05 GMT + x-ms-range: + - bytes=3780-7875 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "6fdd0e5b72cc: Pull complete\n4f4fb700ef54: Pull complete\n27afee16150d: + Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '85' + content-range: + - bytes 3780-3864/3865 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:03 GMT + etag: + - '"0x8DB8D97F7B50206"' + last-modified: + - Wed, 26 Jul 2023 05:20:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:05 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3865' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:03 GMT + etag: + - '"0x8DB8D97F7B50206"' + last-modified: + - Wed, 26 Jul 2023 05:20:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:08 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4217' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:06 GMT + etag: + - '"0x8DB8D97F8E72077"' + last-modified: + - Wed, 26 Jul 2023 05:20:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:08 GMT + x-ms-range: + - bytes=3865-7960 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "511c1db5fe39: Pull complete\naef5a7f065ac: Pull complete\n379c662bf2c6: + Pull complete\n53047a51d46f: Pull complete\nDigest: sha256:9da0586bddf951653dbca665361c8be7bebfeff49d55b66795cf7ca613b8d8ba\nStatus: + Downloaded newer image for mcr.microsoft.com/oryx/cli:debian-bullseye-stable\n + ---> b7cba7f00d1d\nStep 3/10 : WORKDIR /app\n ---> Running in 7937f06059b8\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '352' + content-range: + - bytes 3865-4216/4217 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:06 GMT + etag: + - '"0x8DB8D97F8E72077"' + last-modified: + - Wed, 26 Jul 2023 05:20:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:08 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4217' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:06 GMT + etag: + - '"0x8DB8D97F8E72077"' + last-modified: + - Wed, 26 Jul 2023 05:20:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:10 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4793' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:08 GMT + etag: + - '"0x8DB8D97FAA5EC71"' + last-modified: + - Wed, 26 Jul 2023 05:20:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:10 GMT + x-ms-range: + - bytes=4217-8312 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Removing intermediate container 7937f06059b8\n ---> 2edc20652f6a\nStep + 4/10 : COPY . .\n ---> cc31df4872fc\nStep 5/10 : RUN oryx build /app --output + /output\n ---> Running in 26c493c8f0d4\nOperation performed by Microsoft Oryx, + https://github.com/Microsoft/Oryx\nYou can report issues at https://github.com/Microsoft/Oryx/issues\n\nOryx + Version: 0.2.20230724.1, Commit: e01b34550f75a38df92af2041687cb2b0ad41ec0, + ReleaseTagName: 20230724.1\n\nBuild Operation ID: 8d88298df8d0bdd6\nOS Type + \ : bullseye\nImage Type : cli\n\nDetecting platforms...\nDetected + following platforms:\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '576' + content-range: + - bytes 4217-4792/4793 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:08 GMT + etag: + - '"0x8DB8D97FAA5EC71"' + last-modified: + - Wed, 26 Jul 2023 05:20:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:10 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4793' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:08 GMT + etag: + - '"0x8DB8D97FAA5EC71"' + last-modified: + - Wed, 26 Jul 2023 05:20:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:13 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5575' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:11 GMT + etag: + - '"0x8DB8D97FC06FC4F"' + last-modified: + - Wed, 26 Jul 2023 05:20:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:13 GMT + x-ms-range: + - bytes=4793-8888 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: " nodejs: 16.20.1\nVersion '16.20.1' of platform 'nodejs' is not installed. + Generating script to install it...\nDetected the following frameworks: Express\n\n\nSource + directory : /app\nDestination directory: /output\n\nInstalling common + platform dependencies...\nGet:1 http://deb.debian.org/debian bullseye InRelease + [116 kB]\nGet:2 http://deb.debian.org/debian-security bullseye-security InRelease + [48.4 kB]\nGet:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 + kB]\nGet:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8183 + kB]\nGet:5 http://deb.debian.org/debian-security bullseye-security/main amd64 + Packages [252 kB]\nGet:6 http://deb.debian.org/debian bullseye-updates/main + amd64 Packages [14.8 kB]\nFetched 8658 kB in 2s (5534 kB/s)\nReading package + lists...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '782' + content-range: + - bytes 4793-5574/5575 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:11 GMT + etag: + - '"0x8DB8D97FC06FC4F"' + last-modified: + - Wed, 26 Jul 2023 05:20:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:13 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5575' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:11 GMT + etag: + - '"0x8DB8D97FC06FC4F"' + last-modified: + - Wed, 26 Jul 2023 05:20:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:15 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '7469' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:13 GMT + etag: + - '"0x8DB8D97FD3AED6A"' + last-modified: + - Wed, 26 Jul 2023 05:20:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:15 GMT + x-ms-range: + - bytes=5575-9670 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Reading package lists...\nBuilding dependency tree...\nReading state + information...\nCalculating upgrade...\n0 upgraded, 0 newly installed, 0 to + remove and 0 not upgraded.\nReading package lists...\nBuilding dependency + tree...\nReading state information...\nThe following additional packages will + be installed:\n git-man libcurl3-gnutls liberror-perl libgdbm-compat4 libgdbm6 + libperl5.32\n perl perl-modules-5.32\nSuggested packages:\n gettext-base + git-daemon-run | git-daemon-sysvinit git-doc git-el git-email\n git-gui gitk + gitweb git-cvs git-mediawiki git-svn gdbm-l10n perl-doc\n libterm-readline-gnu-perl + | libterm-readline-perl-perl make\n libtap-harness-archive-perl\nRecommended + packages:\n patch less ssh-client\nThe following NEW packages will be installed:\n + \ git git-man libcurl3-gnutls liberror-perl libgdbm-compat4 libgdbm6\n libperl5.32 + perl perl-modules-5.32\n0 upgraded, 9 newly installed, 0 to remove and 0 not + upgraded.\nNeed to get 15.1 MB of archives.\nAfter this operation, 86.0 MB + of additional disk space will be used.\nGet:1 http://deb.debian.org/debian + bullseye/main amd64 perl-modules-5.32 all 5.32.1-4+deb11u2 [2823 kB]\nGet:2 + http://deb.debian.org/debian bullseye/main amd64 libgdbm6 amd64 1.19-2 [64.9 + kB]\nGet:3 http://deb.debian.org/debian bullseye/main amd64 libgdbm-compat4 + amd64 1.19-2 [44.7 kB]\nGet:4 http://deb.debian.org/debian bullseye/main amd64 + libperl5.32 amd64 5.32.1-4+deb11u2 [4106 kB]\nGet:5 http://deb.debian.org/debian + bullseye/main amd64 perl amd64 5.32.1-4+deb11u2 [293 kB]\nGet:6 http://deb.debian.org/debian + bullseye/main amd64 libcurl3-gnutls amd64 7.74.0-1.3+deb11u7 [343 kB]\nGet:7 + http://deb.debian.org/debian bullseye/main amd64 liberror-perl all 0.17029-1 + [31.0 kB]\nGet:8 http://deb.debian.org/debian bullseye/main amd64 git-man + all 1:2.30.2-1+deb11u2 [1828 kB]\nGet:9 http://deb.debian.org/debian bullseye/main + amd64 git amd64 1:2.30.2-1+deb11u2 [5518 kB]\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1894' + content-range: + - bytes 5575-7468/7469 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:13 GMT + etag: + - '"0x8DB8D97FD3AED6A"' + last-modified: + - Wed, 26 Jul 2023 05:20:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:15 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '7469' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:13 GMT + etag: + - '"0x8DB8D97FD3AED6A"' + last-modified: + - Wed, 26 Jul 2023 05:20:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '9587' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:16 GMT + etag: + - '"0x8DB8D97FE76503B"' + last-modified: + - Wed, 26 Jul 2023 05:20:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:18 GMT + x-ms-range: + - bytes=7469-11564 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "\e[91mdebconf: delaying package configuration, since apt-utils is not + installed\n\e[0mFetched 15.1 MB in 0s (51.9 MB/s)\nSelecting previously unselected + package perl-modules-5.32.\n(Reading database ... \n(Reading database ... + 5%\n(Reading database ... 10%\n(Reading database ... 15%\n(Reading database + ... 20%\n(Reading database ... 25%\n(Reading database ... 30%\n(Reading database + ... 35%\n(Reading database ... 40%\n(Reading database ... 45%\n(Reading database + ... 50%\n(Reading database ... 55%\n(Reading database ... 60%\n(Reading database + ... 65%\n(Reading database ... 70%\n(Reading database ... 75%\n(Reading database + ... 80%\n(Reading database ... 85%\n(Reading database ... 90%\n(Reading database + ... 95%\n(Reading database ... 100%\n(Reading database ... 10093 files and + directories currently installed.)\nPreparing to unpack .../0-perl-modules-5.32_5.32.1-4+deb11u2_all.deb + ...\nUnpacking perl-modules-5.32 (5.32.1-4+deb11u2) ...\nSelecting previously + unselected package libgdbm6:amd64.\nPreparing to unpack .../1-libgdbm6_1.19-2_amd64.deb + ...\nUnpacking libgdbm6:amd64 (1.19-2) ...\nSelecting previously unselected + package libgdbm-compat4:amd64.\nPreparing to unpack .../2-libgdbm-compat4_1.19-2_amd64.deb + ...\nUnpacking libgdbm-compat4:amd64 (1.19-2) ...\nSelecting previously unselected + package libperl5.32:amd64.\nPreparing to unpack .../3-libperl5.32_5.32.1-4+deb11u2_amd64.deb + ...\nUnpacking libperl5.32:amd64 (5.32.1-4+deb11u2) ...\nSelecting previously + unselected package perl.\nPreparing to unpack .../4-perl_5.32.1-4+deb11u2_amd64.deb + ...\nUnpacking perl (5.32.1-4+deb11u2) ...\nSelecting previously unselected + package libcurl3-gnutls:amd64.\nPreparing to unpack .../5-libcurl3-gnutls_7.74.0-1.3+deb11u7_amd64.deb + ...\nUnpacking libcurl3-gnutls:amd64 (7.74.0-1.3+deb11u7) ...\nSelecting previously + unselected package liberror-perl.\nPreparing to unpack .../6-liberror-perl_0.17029-1_all.deb + ...\nUnpacking liberror-perl (0.17029-1) ...\nSelecting previously unselected + package git-man.\nPreparing to unpack .../7-git-man_1%3a2.30.2-1+deb11u2_all.deb + ...\nUnpacking git-man (1:2.30.2-1+deb11u2) ...\nSelecting previously unselected + package git.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2118' + content-range: + - bytes 7469-9586/9587 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:16 GMT + etag: + - '"0x8DB8D97FE76503B"' + last-modified: + - Wed, 26 Jul 2023 05:20:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '9587' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:16 GMT + etag: + - '"0x8DB8D97FE76503B"' + last-modified: + - Wed, 26 Jul 2023 05:20:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:21 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '13445' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:18 GMT + etag: + - '"0x8DB8D97FFBF117E"' + last-modified: + - Wed, 26 Jul 2023 05:20:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:21 GMT + x-ms-range: + - bytes=9587-13682 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Preparing to unpack .../8-git_1%3a2.30.2-1+deb11u2_amd64.deb ...\nUnpacking + git (1:2.30.2-1+deb11u2) ...\nSetting up perl-modules-5.32 (5.32.1-4+deb11u2) + ...\nSetting up libcurl3-gnutls:amd64 (7.74.0-1.3+deb11u7) ...\nSetting up + git-man (1:2.30.2-1+deb11u2) ...\nSetting up libgdbm6:amd64 (1.19-2) ...\nSetting + up libgdbm-compat4:amd64 (1.19-2) ...\nSetting up libperl5.32:amd64 (5.32.1-4+deb11u2) + ...\nSetting up perl (5.32.1-4+deb11u2) ...\nSetting up liberror-perl (0.17029-1) + ...\nSetting up git (1:2.30.2-1+deb11u2) ...\nProcessing triggers for libc-bin + (2.31-13+deb11u6) ...\nInstalling nodejs specific dependencies...\n\e[91m+++ + dirname /opt/tmp/images/build/installHugo.sh\n\e[0m\e[91m++ cd /opt/tmp/images/build\n\e[0m\e[91m++ + pwd\n\e[0m\e[91m+ __CURRENT_DIR=/opt/tmp/images/build\n\e[0m\e[91m+ source + /opt/tmp/images/build/../../build/__hugoConstants.sh\n\e[0m\e[91m++ VERSION=0.112.5\n\e[0m\e[91m++ + PLATFORM_NAME=hugo\n\e[0m\e[91m++ INSTALLED_HUGO_VERSIONS_DIR=/opt/hugo\n\e[0m\e[91m++ + INSTALLATION_URL_FORMAT=https://github.com/gohugoio/hugo/releases/download/v#VERSION#/#TAR_FILE#\n++ + TAR_FILE_NAME_FORMAT=hugo_extended_#VERSION#_Linux-64bit.tar.gz\n\e[0m\e[91m++ + CONFIG_FOLDER_NAME=config\n\e[0m\e[91m++ TOML_FILE_NAMES=(\"config.toml\" + \"hugo.toml\")\n\e[0m\e[91m++ YAML_FILE_NAMES=(\"config.yaml\" \"hugo.yaml\")\n++ + YML_FILE_NAMES=(\"config.yml\" \"hugo.yml\")\n++ JSON_FILE_NAMES=(\"config.json\" + \"hugo.json\")\n\e[0m\e[91m++ echo hugo_extended_#VERSION#_Linux-64bit.tar.gz\n\e[0m\e[91m++ + sed s/#VERSION#/0.112.5/g\n\e[0m\e[91m+ fileName=hugo_extended_0.112.5_Linux-64bit.tar.gz\n\e[0m\e[91m++ + echo https://github.com/gohugoio/hugo/releases/download/v#VERSION#/#TAR_FILE#\n\e[0m\e[91m++ + sed s/#VERSION#/0.112.5/g\n\e[0m\e[91m+ url=https://github.com/gohugoio/hugo/releases/download/v0.112.5/#TAR_FILE#\n\e[0m\e[91m++ + echo https://github.com/gohugoio/hugo/releases/download/v0.112.5/#TAR_FILE#\n\e[0m\e[91m++ + sed s/#TAR_FILE#/hugo_extended_0.112.5_Linux-64bit.tar.gz/g\n\e[0m\e[91m+ + url=https://github.com/gohugoio/hugo/releases/download/v0.112.5/hugo_extended_0.112.5_Linux-64bit.tar.gz\n\e[0m\e[91m+ + request='curl -fsSLO --compressed https://github.com/gohugoio/hugo/releases/download/v0.112.5/hugo_extended_0.112.5_Linux-64bit.tar.gz'\n\e[0m\e[91m+ + /opt/tmp/images/retry.sh 'curl -fsSLO --compressed https://github.com/gohugoio/hugo/releases/download/v0.112.5/hugo_extended_0.112.5_Linux-64bit.tar.gz'\n\e[0mretry + 0\n\e[91m+ installationDir=/opt/hugo/0.112.5\n+ mkdir -p /opt/hugo/0.112.5\n\e[0m\e[91m+ + tar -xzf hugo_extended_0.112.5_Linux-64bit.tar.gz -C /opt/hugo/0.112.5\n\e[0m\e[91m+ + rm hugo_extended_0.112.5_Linux-64bit.tar.gz\n\e[0m\e[91m+ ln -s /opt/hugo/0.112.5 + /opt/hugo/lts\n\e[0m\e[91m+ yarnCacheFolder=/usr/local/share/yarn-cache\n\e[0m\e[91m+ + mkdir -p /usr/local/share/yarn-cache\n\e[0m\e[91m+ chmod 777 /usr/local/share/yarn-cache\n\e[0m\e[91m+ + . /opt/tmp/build/__nodeVersions.sh\n\e[0m\e[91m++ NODE_RUNTIME_BASE_TAG=20230707.2\n\e[0m\e[91m++ + YARN_VERSION=1.22.15\n\e[0m\e[91m++ YARN_MINOR_VERSION=1.17\n\e[0m\e[91m++ + YARN_MAJOR_VERSION=1\n\e[0m\e[91m++ NODE6_VERSION=6.17.1\n\e[0m\e[91m++ NODE8_VERSION=8.17.0\n\e[0m\e[91m++ + NODE10_VERSION=10.23.0\n\e[0m\e[91m++ NODE12_VERSION=12.22.12\n\e[0m\e[91m++ + NODE14_VERSION=14.21.3\n\e[0m\e[91m++ NODE16_VERSION=16.20.1\n\e[0m\e[91m++ + NODE18_VERSION=18.16.1\n\e[0m\e[91m++ NODE_APP_INSIGHTS_SDK_VERSION=1.8.7\n++ + PM2_VERSION=4.5.6\n\e[0m\e[91m++ NPM_VERSION=9.6.4\n\e[0m\e[91m+ /opt/tmp/images/receiveGpgKeys.sh + 6A010C5166006599AA17F08146C2130DFD2497F5\n\e[0m\e[91m+ KEY_IDS=6A010C5166006599AA17F08146C2130DFD2497F5\n\e[0m\e[91m+ + '[' 6A010C5166006599AA17F08146C2130DFD2497F5 == '' ']'\n\e[0m\e[91m+ for keyID + in $KEY_IDS\n\e[0m\e[91m+ for i in {1..10}\n+ echo 'Try # 1'\n+ gpg --batch + --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 6A010C5166006599AA17F08146C2130DFD2497F5\n\e[0mTry + # 1\n\e[91mgpg: directory '/root/.gnupg' created\n\e[0m\e[91mgpg: keybox '/root/.gnupg/pubring.kbx' + created\n\e[0m\e[91mgpg: key 1646B01B86E50310: 7 duplicate signatures removed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3858' + content-range: + - bytes 9587-13444/13445 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:18 GMT + etag: + - '"0x8DB8D97FFBF117E"' + last-modified: + - Wed, 26 Jul 2023 05:20:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:21 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '13445' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:19 GMT + etag: + - '"0x8DB8D97FFBF117E"' + last-modified: + - Wed, 26 Jul 2023 05:20:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '16301' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:21 GMT + etag: + - '"0x8DB8D9801206F25"' + last-modified: + - Wed, 26 Jul 2023 05:20:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:23 GMT + x-ms-range: + - bytes=13445-17540 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "\e[0m\e[91mgpg: /root/.gnupg/trustdb.gpg: trustdb created\n\e[0m\e[91mgpg: + key 1646B01B86E50310: public key \"Yarn Packaging \" imported\n\e[0m\e[91mgpg: + Total number processed: 1\n\e[0m\e[91mgpg: imported: 1\n\e[0m\e[91m+ + '[' '' == '' ']'\n\e[0m\e[91m+ echo 'Received key successfully.'\n+ break\n\e[0mReceived + key successfully.\n\e[91m+ /opt/tmp/images/retry.sh 'curl -fsSLO --compressed + https://yarnpkg.com/downloads/1.22.15/yarn-v1.22.15.tar.gz'\n\e[0mretry 0\n\e[91m+ + /opt/tmp/images/retry.sh 'curl -fsSLO --compressed https://yarnpkg.com/downloads/1.22.15/yarn-v1.22.15.tar.gz.asc'\n\e[0mretry + 0\n\e[91m+ gpg --batch --verify yarn-v1.22.15.tar.gz.asc yarn-v1.22.15.tar.gz\n\e[0m\e[91mgpg: + Signature made Thu Sep 30 00:14:59 2021 UTC\n\e[0m\e[91mgpg: using + RSA key 6D98490C6F1ACDDD448E45954F77679369475BAA\n\e[0m\e[91mgpg: Good signature + from \"Yarn Packaging \" [unknown]\n\e[0m\e[91mgpg: WARNING: + This key is not certified with a trusted signature!\n\e[0m\e[91mgpg: There + is no indication that the signature belongs to the owner.\n\e[0m\e[91mPrimary + key fingerprint: 72EC F46A 56B4 AD39 C907 BBB7 1646 B01B 86E5 0310\n\e[0m\e[91m + \ Subkey fingerprint: 6D98 490C 6F1A CDDD 448E 4595 4F77 6793 6947 5BAA\n\e[0m\e[91m+ + mkdir -p /opt/yarn\n\e[0m\e[91m+ tar -xzf yarn-v1.22.15.tar.gz -C /opt/yarn\n\e[0m\e[91m+ + mv /opt/yarn/yarn-v1.22.15 /opt/yarn/1.22.15\n\e[0m\e[91m+ rm yarn-v1.22.15.tar.gz.asc + yarn-v1.22.15.tar.gz\n\e[0m\e[91m+ . /opt/tmp/build/__nodeVersions.sh\n\e[0m\e[91m++ + NODE_RUNTIME_BASE_TAG=20230707.2\n\e[0m\e[91m++ YARN_VERSION=1.22.15\n++ YARN_MINOR_VERSION=1.17\n\e[0m\e[91m++ + YARN_MAJOR_VERSION=1\n++ NODE6_VERSION=6.17.1\n\e[0m\e[91m++ NODE8_VERSION=8.17.0\n\e[0m\e[91m++ + NODE10_VERSION=10.23.0\n++ NODE12_VERSION=12.22.12\n++ NODE14_VERSION=14.21.3\n\e[0m\e[91m++ + NODE16_VERSION=16.20.1\n\e[0m\e[91m++ NODE18_VERSION=18.16.1\n++ NODE_APP_INSIGHTS_SDK_VERSION=1.8.7\n++ + PM2_VERSION=4.5.6\n\e[0m\e[91m++ NPM_VERSION=9.6.4\n\e[0m\e[91m+ ln -s 1.22.15 + /opt/yarn/stable\n\e[0m\e[91m+ ln -s 1.22.15 /opt/yarn/latest\n\e[0m\e[91m+ + ln -s 1.22.15 /opt/yarn/1.17\n\e[0m\e[91m+ ln -s 1.17 /opt/yarn/1\n\e[0m\e[91m+ + mkdir -p /links\n\e[0m\e[91m+ cp -s /opt/yarn/stable/bin/yarn /opt/yarn/stable/bin/yarnpkg + /links\n\e[0m\e[91m+ echo 'Installing python tooling and language...'\n\e[0mInstalling + python tooling and language...\n\e[91m+ PYTHONIOENCODING=UTF-8\n+ apt-get + update\n\e[0mGet:1 http://deb.debian.org/debian bullseye InRelease [116 kB]\nGet:2 + http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB]\nGet:3 + http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]\nGet:4 http://deb.debian.org/debian + bullseye/main amd64 Packages [8183 kB]\nGet:5 http://deb.debian.org/debian-security + bullseye-security/main amd64 Packages [252 kB]\nGet:6 http://deb.debian.org/debian + bullseye-updates/main amd64 Packages [14.8 kB]\nFetched 8658 kB in 1s (6905 + kB/s)\nReading package lists...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2856' + content-range: + - bytes 13445-16300/16301 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:21 GMT + etag: + - '"0x8DB8D9801206F25"' + last-modified: + - Wed, 26 Jul 2023 05:20:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '19527' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:21 GMT + etag: + - '"0x8DB8D9802817F00"' + last-modified: + - Wed, 26 Jul 2023 05:20:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:23 GMT + x-ms-range: + - bytes=16301-20396 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "\e[91m+ apt-get upgrade -y\n\e[0mReading package lists...\nBuilding + dependency tree...\nReading state information...\nCalculating upgrade...\n0 + upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n\e[91m+ apt-get + install -y --no-install-recommends make unzip libpq-dev moreutils python3-pip + swig unixodbc-dev build-essential gdb lcov pkg-config libbz2-dev libffi-dev + libgdbm-dev liblzma-dev libncurses5-dev libreadline6-dev libsqlite3-dev libssl-dev + lzma lzma\e[0m\e[91m-dev tk-dev uuid-dev zlib1g-dev\n\e[0mReading package + lists...\nBuilding dependency tree...\nReading state information...\nzlib1g-dev + is already the newest version (1:1.2.11.dfsg-2+deb11u2).\nzlib1g-dev set to + manually installed.\nlibssl-dev is already the newest version (1.1.1n-0+deb11u5).\nlibssl-dev + set to manually installed.\nThe following additional packages will be installed:\n + \ autoconf automake autotools-dev binutils binutils-common\n binutils-x86-64-linux-gnu + bzip2 cpp cpp-10 dpkg-dev g++ g++-10 gcc gcc-10\n libasan6 libatomic1 libbabeltrace1 + libbinutils libboost-regex1.74.0\n libbrotli-dev libcc1-0 libctf-nobfd0 libctf0 + libdebuginfod1 libdpkg-perl\n libdw1 libelf1 libexpat1-dev libfontconfig-dev + libfontconfig1-dev\n libfreetype-dev libfreetype6-dev libgcc-10-dev libgomp1 + libio-pty-perl\n libipc-run-perl libipt2 libisl23 libitm1 libjson-perl liblsan0 + libltdl-dev\n libltdl7 libmpc3 libmpdec3 libmpfr6 libncurses-dev libncurses6 + libodbc1\n libperlio-gzip-perl libpng-dev libpq5 libpthread-stubs0-dev\n + \ libpython3-stdlib libpython3.9 libpython3.9-minimal libpython3.9-stdlib\n + \ libquadmath0 libsigsegv2 libsource-highlight-common libsource-highlight4v5\n + \ libstdc++-10-dev libtcl8.6 libtime-duration-perl libtimedate-perl libtk8.6\n + \ libtsan0 libubsan1 libx11-dev libxau-dev libxcb1-dev libxdmcp-dev\n libxext-dev + libxft-dev libxft2 libxrender-dev libxss-dev libxss1 m4\n media-types odbcinst + odbcinst1debian2 patch python-pip-whl python3\n python3-distutils python3-lib2to3 + python3-minimal python3-pkg-resources\n python3-setuptools python3-wheel + python3.9 python3.9-minimal swig4.0 tcl\n tcl-dev tcl8.6 tcl8.6-dev tk tk8.6 + tk8.6-dev x11-common x11proto-core-dev\n x11proto-dev x11proto-scrnsaver-dev + x11proto-xext-dev xorg-sgml-doctools\n xtrans-dev xz-utils\nSuggested packages:\n + \ autoconf-archive gnu-standards autoconf-doc libtool gettext binutils-doc\n + \ bzip2-doc cpp-doc gcc-10-locales debian-keyring g++-multilib g++-10-multilib\n + \ gcc-10-doc gcc-multilib manpages-dev flex bison gcc-doc gcc-10-multilib\n + \ gdb-doc gdbserver bzr freetype2-doc libtool-doc liblzma-doc ncurses-doc\n + \ libmyodbc odbc-postgresql tdsodbc unixodbc-bin postgresql-doc-13\n readline-doc + sqlite3-doc libstdc++-10-doc libx11-doc libxcb-doc libxext-doc\n m4-doc make-doc + ed diffutils-doc python3-doc python3-tk python3-venv\n python-setuptools-doc + python3.9-venv python3.9-doc binfmt-support swig-doc\n swig-examples swig4.0-examples + swig4.0-doc tcl-doc tcl-tclreadline\n tcl8.6-doc tk-doc tk8.6-doc zip\nRecommended + packages:\n fakeroot libalgorithm-merge-perl libc-dbg libgd-gd2-perl bzip2-doc\n + \ libfile-fcntllock-perl liblocale-gettext-perl libjson-xs-perl libtool\n + \ libgpm2 libpng-tools python3-dev xterm | x-terminal-emulator\nThe following + NEW packages will be installed:\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3226' + content-range: + - bytes 16301-19526/19527 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:21 GMT + etag: + - '"0x8DB8D9802817F00"' + last-modified: + - Wed, 26 Jul 2023 05:20:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '19527' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:21 GMT + etag: + - '"0x8DB8D9802817F00"' + last-modified: + - Wed, 26 Jul 2023 05:20:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:26 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '27779' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:23 GMT + etag: + - '"0x8DB8D9802EB3B85"' + last-modified: + - Wed, 26 Jul 2023 05:20:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:26 GMT + x-ms-range: + - bytes=19527-23622 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: " autoconf automake autotools-dev binutils binutils-common\n binutils-x86-64-linux-gnu + build-essential bzip2 cpp cpp-10 dpkg-dev g++\n g++-10 gcc gcc-10 gdb lcov + libasan6 libatomic1 libbabeltrace1 libbinutils\n libboost-regex1.74.0 libbrotli-dev + libbz2-dev libcc1-0 libctf-nobfd0 libctf0\n libdebuginfod1 libdpkg-perl libdw1 + libelf1 libexpat1-dev libffi-dev\n libfontconfig-dev libfontconfig1-dev libfreetype-dev + libfreetype6-dev\n libgcc-10-dev libgdbm-dev libgomp1 libio-pty-perl libipc-run-perl + libipt2\n libisl23 libitm1 libjson-perl liblsan0 libltdl-dev libltdl7 liblzma-dev\n + \ libmpc3 libmpdec3 libmpfr6 libncurses-dev libncurses5-dev libncurses6\n + \ libodbc1 libperlio-gzip-perl libpng-dev libpq-dev libpq5\n libpthread-stubs0-dev + libpython3-stdlib libpython3.9 libpython3.9-minimal\n libpython3.9-stdlib + libquadmath0 libreadline-dev libsigsegv2\n libsource-highlight-common libsource-highlight4v5 + libsqlite3-dev\n libstdc++-10-dev libtcl8.6 libtime-duration-perl libtimedate-perl + libtk8.6\n libtsan0 libubsan1 libx11-dev libxau-dev libxcb1-dev libxdmcp-dev\n + \ libxext-dev libxft-dev libxft2 libxrender-dev libxss-dev libxss1 lzma\n + \ lzma-dev m4 make media-types moreutils odbcinst odbcinst1debian2 patch\n + \ pkg-config python-pip-whl python3 python3-distutils python3-lib2to3\n python3-minimal + python3-pip python3-pkg-resources python3-setuptools\n python3-wheel python3.9 + python3.9-minimal swig swig4.0 tcl tcl-dev tcl8.6\n tcl8.6-dev tk tk-dev + tk8.6 tk8.6-dev unixodbc-dev unzip uuid-dev x11-common\n x11proto-core-dev + x11proto-dev x11proto-scrnsaver-dev x11proto-xext-dev\n xorg-sgml-doctools + xtrans-dev xz-utils\n0 upgraded, 131 newly installed, 0 to remove and 0 not + upgraded.\nNeed to get 87.8 MB of archives.\nAfter this operation, 309 MB + of additional disk space will be used.\nGet:1 http://deb.debian.org/debian + bullseye/main amd64 libpython3.9-minimal amd64 3.9.2-1 [801 kB]\nGet:2 http://deb.debian.org/debian + bullseye/main amd64 python3.9-minimal amd64 3.9.2-1 [1955 kB]\nGet:3 http://deb.debian.org/debian + bullseye/main amd64 python3-minimal amd64 3.9.2-3 [38.2 kB]\nGet:4 http://deb.debian.org/debian + bullseye/main amd64 media-types all 4.0.0 [30.3 kB]\nGet:5 http://deb.debian.org/debian + bullseye/main amd64 libmpdec3 amd64 2.5.1-1 [87.7 kB]\nGet:6 http://deb.debian.org/debian + bullseye/main amd64 libpython3.9-stdlib amd64 3.9.2-1 [1684 kB]\nGet:7 http://deb.debian.org/debian + bullseye/main amd64 python3.9 amd64 3.9.2-1 [466 kB]\nGet:8 http://deb.debian.org/debian + bullseye/main amd64 libpython3-stdlib amd64 3.9.2-3 [21.4 kB]\nGet:9 http://deb.debian.org/debian + bullseye/main amd64 python3 amd64 3.9.2-3 [37.9 kB]\nGet:10 http://deb.debian.org/debian + bullseye/main amd64 bzip2 amd64 1.0.8-4 [49.3 kB]\nGet:11 http://deb.debian.org/debian + bullseye/main amd64 xz-utils amd64 5.2.5-2.1~deb11u1 [220 kB]\nGet:12 http://deb.debian.org/debian + bullseye/main amd64 libsigsegv2 amd64 2.13-1 [34.8 kB]\nGet:13 http://deb.debian.org/debian + bullseye/main amd64 m4 amd64 1.4.18-5 [204 kB]\nGet:14 http://deb.debian.org/debian + bullseye/main amd64 autoconf all 2.69-14 [313 kB]\nGet:15 http://deb.debian.org/debian + bullseye/main amd64 autotools-dev all 20180224.1+nmu1 [77.1 kB]\nGet:16 http://deb.debian.org/debian + bullseye/main amd64 automake all 1:1.16.3-2 [814 kB]\nGet:17 http://deb.debian.org/debian + bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB]\nGet:18 http://deb.debian.org/debian + bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB]\nGet:19 http://deb.debian.org/debian + bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB]\nGet:20 http://deb.debian.org/debian + bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB]\nGet:21 http://deb.debian.org/debian + bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB]\nGet:22 + http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 + kB]\nGet:23 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 + 0.23-1 [676 kB]\nGet:24 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 + amd64 4.1.0-3 [2012 kB]\nGet:25 http://deb.debian.org/debian bullseye/main + amd64 libmpc3 amd64 1.2.0-1 [45.0 kB]\nGet:26 ht" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 19527-23622/35994 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:23 GMT + etag: + - '"0x8DB8D9803F64ECD"' + last-modified: + - Wed, 26 Jul 2023 05:20:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:26 GMT + x-ms-range: + - bytes=23623-27718 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: 'tp://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 + [8528 kB] + + Get:27 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 + [19.7 kB] + + Get:28 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 + [47.0 kB] + + Get:29 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 + [99.9 kB] + + Get:30 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 + [25.8 kB] + + Get:31 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 + [9008 B] + + Get:32 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 + [2065 kB] + + Get:33 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 + [828 kB] + + Get:34 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 + [2000 kB] + + Get:35 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 + [777 kB] + + Get:36 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 + 10.2.1-6 [145 kB] + + Get:37 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 + 10.2.1-6 [2328 kB] + + Get:38 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 + [17.0 MB] + + Get:39 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 + [5192 B] + + Get:40 http://deb.debian.org/debian bullseye/main amd64 libstdc++-10-dev amd64 + 10.2.1-6 [1741 kB] + + Get:41 http://deb.debian.org/debian bullseye/main amd64 g++-10 amd64 10.2.1-6 + [9380 kB] + + Get:42 http://deb.debian.org/debian bullseye/main amd64 g++ amd64 4:10.2.1-1 + [1644 B] + + Get:43 http://deb.debian.org/debian bullseye/main amd64 make amd64 4.3-4.1 + [396 kB] + + Get:44 http://deb.debian.org/debian bullseye/main amd64 libdpkg-perl all 1.20.12 + [1551 kB] + + Get:45 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 + [128 kB] + + Get:46 http://deb.debian.org/debian bullseye/main amd64 dpkg-dev all 1.20.12 + [2312 kB] + + Get:47 http://deb.debian.org/debian bullseye/main amd64 build-essential amd64 + 12.9 [7704 B] + + Get:48 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 + [165 kB] + + Get:49 http://deb.debian.org/debian bullseye/main amd64 libdw1 amd64 0.183-1 + [234 kB] + + Get:50 http://deb.debian.org/debian bullseye/main amd64 libbabeltrace1 amd64 + 1.5.8-1+b3 [174 kB] + + Get:51 http://deb.debian.org/debian bullseye/main amd64 libdebuginfod1 amd64 + 0.183-1 [27.4 kB] + + Get:52 http://deb.debian.org/debian bullseye/main amd64 libipt2 amd64 2.0.3-1 + [43.7 kB] + + Get:53 http://deb.debian.org/debian bullseye/main amd64 libpython3.9 amd64 + 3.9.2-1 [1691 kB] + + Get:54 http://deb.debian.org/debian bullseye/main amd64 libsource-highlight-common + all 3.1.9-3 [79.7 kB] + + Get:55 http://deb.debian.org/debian bullseye/main amd64 libboost-regex1.74.0 + amd64 1.74.0-9 [516 kB] + + Get:56 http://deb.debian.org/debian bullseye/main amd64 libsource-highlight4v5 + amd64 3.1.9-3+b1 [259 kB] + + Get:57 http://deb.debian.org/debian bullseye/main amd64 gdb amd64 10.1-1.7 + [3395 kB] + + Get:58 http://deb.debian.org/debian bullseye/main amd64 libjson-perl all 4.03000-1 + [88.6 kB] + + Get:59 http://deb.debian.org/debian bullseye/main amd64 libperlio-gzip-perl + amd64 0.19-1+b7 [17.4 kB] + + Get:60 http://deb.debian.org/debian bullseye/main amd64 lcov all 1.14-2 [138 + kB] + + Get:61 http://deb.debian.org/debian bullseye/main amd64 libbrotli-dev amd64 + 1.0.9-2+b2 [288 kB] + + Get:62 http://deb.debian.org/debian bullseye/main amd64 libbz2-dev amd64 1.0.8-4 + [30.1 kB] + + Get:63 http://deb.debian.org/debian bullseye/main amd64 libexpat1-dev amd64 + 2.2.10-2+deb11u5 [141 kB] + + Get:64 http://deb.debian.org/debian bullseye/main amd64 libffi-dev amd64 3.3-6 + [56.5 kB] + + Get:65 http://deb.debian.org/debian bullseye/main amd64 libpng-dev amd64 1.6.37-3 + [298 kB] + + Get:66 http://deb.debian.org/debian bullseye/main amd64 libfreetype-dev amd64 + 2.10.4+dfsg-1+deb11u1 [571 kB] + + Get:67 http://deb.debian.org/debian bullseye/main amd64 libfreetype6-dev amd64 + 2.10.4+dfsg-1+deb11u1 [82.6 kB] + + Get:68 http://deb.debian.org/debian bullseye/main amd64 uuid-dev amd64 2.36.1-8+deb11u1 + [99.4 kB] + + Get:69 http://deb.debian.org/debian bullseye/main amd64 pkg-config amd64 0.29.2-1 + [65.1 kB] + + Get:70 http://deb.debian.org/debian bulls' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 23623-27718/35994 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:23 GMT + etag: + - '"0x8DB8D9803F64ECD"' + last-modified: + - Wed, 26 Jul 2023 05:20:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:26 GMT + x-ms-range: + - bytes=27719-31814 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "eye/main amd64 libfontconfig-dev amd64 2.13.1-4.2 [368 kB]\r\nGet:71 + http://deb.debian.org/debian bullseye/main amd64 libfontconfig1-dev amd64 + 2.13.1-4.2 [238 kB]\nGet:72 http://deb.debian.org/debian bullseye/main amd64 + libgdbm-dev amd64 1.19-2 [130 kB]\nGet:73 http://deb.debian.org/debian bullseye/main + amd64 libio-pty-perl amd64 1:1.15-2 [37.0 kB]\nGet:74 http://deb.debian.org/debian + bullseye/main amd64 libipc-run-perl all 20200505.0-1 [102 kB]\nGet:75 http://deb.debian.org/debian + bullseye/main amd64 libltdl7 amd64 2.4.6-15 [391 kB]\nGet:76 http://deb.debian.org/debian + bullseye/main amd64 libltdl-dev amd64 2.4.6-15 [162 kB]\nGet:77 http://deb.debian.org/debian + bullseye/main amd64 liblzma-dev amd64 5.2.5-2.1~deb11u1 [229 kB]\nGet:78 http://deb.debian.org/debian + bullseye/main amd64 libncurses6 amd64 6.2+20201114-2+deb11u1 [102 kB]\nGet:79 + http://deb.debian.org/debian bullseye/main amd64 libncurses-dev amd64 6.2+20201114-2+deb11u1 + [344 kB]\nGet:80 http://deb.debian.org/debian bullseye/main amd64 libncurses5-dev + amd64 6.2+20201114-2+deb11u1 [948 B]\nGet:81 http://deb.debian.org/debian + bullseye/main amd64 libodbc1 amd64 2.3.6-0.1+b1 [224 kB]\nGet:82 http://deb.debian.org/debian-security + bullseye-security/main amd64 libpq5 amd64 13.11-0+deb11u1 [180 kB]\nGet:83 + http://deb.debian.org/debian-security bullseye-security/main amd64 libpq-dev + amd64 13.11-0+deb11u1 [140 kB]\nGet:84 http://deb.debian.org/debian bullseye/main + amd64 libpthread-stubs0-dev amd64 0.4-1 [5344 B]\nGet:85 http://deb.debian.org/debian + bullseye/main amd64 libreadline-dev amd64 8.1-1 [148 kB]\nGet:86 http://deb.debian.org/debian + bullseye/main amd64 libsqlite3-dev amd64 3.34.1-3 [963 kB]\nGet:87 http://deb.debian.org/debian + bullseye/main amd64 libtcl8.6 amd64 8.6.11+dfsg-1 [1018 kB]\nGet:88 http://deb.debian.org/debian + bullseye/main amd64 libtime-duration-perl all 1.21-1 [13.7 kB]\nGet:89 http://deb.debian.org/debian + bullseye/main amd64 libtimedate-perl all 2.3300-2 [39.3 kB]\nGet:90 http://deb.debian.org/debian + bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB]\nGet:91 http://deb.debian.org/debian + bullseye/main amd64 x11-common all 1:7.7+22 [252 kB]\nGet:92 http://deb.debian.org/debian + bullseye/main amd64 libxss1 amd64 1:1.2.3-1 [17.8 kB]\nGet:93 http://deb.debian.org/debian + bullseye/main amd64 libtk8.6 amd64 8.6.11-2 [780 kB]\nGet:94 http://deb.debian.org/debian + bullseye/main amd64 xorg-sgml-doctools all 1:1.11-1.1 [22.1 kB]\nGet:95 http://deb.debian.org/debian + bullseye/main amd64 x11proto-dev all 2020.1-1 [594 kB]\nGet:96 http://deb.debian.org/debian + bullseye/main amd64 libxau-dev amd64 1:1.0.9-1 [22.9 kB]\nGet:97 http://deb.debian.org/debian + bullseye/main amd64 x11proto-core-dev all 2020.1-1 [3404 B]\nGet:98 http://deb.debian.org/debian + bullseye/main amd64 libxdmcp-dev amd64 1:1.1.2-3 [42.2 kB]\nGet:99 http://deb.debian.org/debian + bullseye/main amd64 xtrans-dev all 1.4.0-1 [98.7 kB]\nGet:100 http://deb.debian.org/debian + bullseye/main amd64 libxcb1-dev amd64 1.14-3 [176 kB]\nGet:101 http://deb.debian.org/debian-security + bullseye-security/main amd64 libx11-dev amd64 2:1.7.2-1+deb11u1 [843 kB]\nGet:102 + http://deb.debian.org/debian bullseye/main amd64 x11proto-xext-dev all 2020.1-1 + [3404 B]\nGet:103 http://deb.debian.org/debian bullseye/main amd64 libxext-dev + amd64 2:1.3.3-1.1 [107 kB]\nGet:104 http://deb.debian.org/debian bullseye/main + amd64 libxrender-dev amd64 1:0.9.10-1 [40.8 kB]\nGet:105 http://deb.debian.org/debian + bullseye/main amd64 libxft-dev amd64 2.3.2-2 [68.7 kB]\nGet:106 http://deb.debian.org/debian + bullseye/main amd64 x11proto-scrnsaver-dev all 2020.1-1 [3412 B]\nGet:107 + http://deb.debian.org/debian bullseye/main amd64 libxss-dev amd64 1:1.2.3-1 + [23.5 kB]\nGet:108 http://deb.debian.org/debian bullseye/main amd64 lzma amd64 + 9.22-2.2 [49.6 kB]\nGet:109 http://deb.debian.org/debian bullseye/main amd64 + lzma-dev all 9.22-2.2 [44.8 kB]\nGet:110 http://deb.debian.org/debian bullseye/main + amd64 moreutils amd64 0.65-1 [75.5 kB]\nGet:111 http://deb.debian.org/debian + bullseye/main amd64 odbcinst1debian2 amd64 2.3.6-0.1+b1 [78.6 kB]\nGet:112 + http://deb.debian.org/debian bullseye/main amd64 odbcinst am" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 27719-31814/35994 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:24 GMT + etag: + - '"0x8DB8D9803F64ECD"' + last-modified: + - Wed, 26 Jul 2023 05:20:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:26 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '35994' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:24 GMT + etag: + - '"0x8DB8D9803F64ECD"' + last-modified: + - Wed, 26 Jul 2023 05:20:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:26 GMT + x-ms-range: + - bytes=31815-35910 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "d64 2.3.6-0.1+b1 [48.7 kB]\nGet:113 http://deb.debian.org/debian bullseye/main + amd64 python-pip-whl all 20.3.4-4+deb11u1 [1948 kB]\nGet:114 http://deb.debian.org/debian + bullseye/main amd64 python3-lib2to3 all 3.9.2-1 [77.8 kB]\nGet:115 http://deb.debian.org/debian + bullseye/main amd64 python3-distutils all 3.9.2-1 [143 kB]\nGet:116 http://deb.debian.org/debian + bullseye/main amd64 python3-pkg-resources all 52.0.0-4 [190 kB]\nGet:117 http://deb.debian.org/debian + bullseye/main amd64 python3-setuptools all 52.0.0-4 [366 kB]\nGet:118 http://deb.debian.org/debian + bullseye/main amd64 python3-wheel all 0.34.2-1 [24.0 kB]\nGet:119 http://deb.debian.org/debian + bullseye/main amd64 python3-pip all 20.3.4-4+deb11u1 [337 kB]\nGet:120 http://deb.debian.org/debian + bullseye/main amd64 swig4.0 amd64 4.0.2-1 [1377 kB]\nGet:121 http://deb.debian.org/debian + bullseye/main amd64 swig all 4.0.2-1 [330 kB]\nGet:122 http://deb.debian.org/debian + bullseye/main amd64 tcl8.6 amd64 8.6.11+dfsg-1 [124 kB]\nGet:123 http://deb.debian.org/debian + bullseye/main amd64 tcl amd64 8.6.11+1 [5788 B]\nGet:124 http://deb.debian.org/debian + bullseye/main amd64 tcl8.6-dev amd64 8.6.11+dfsg-1 [1018 kB]\nGet:125 http://deb.debian.org/debian + bullseye/main amd64 tcl-dev amd64 8.6.11+1 [8360 B]\nGet:126 http://deb.debian.org/debian + bullseye/main amd64 tk8.6 amd64 8.6.11-2 [72.3 kB]\nGet:127 http://deb.debian.org/debian + bullseye/main amd64 tk amd64 8.6.11+1 [5828 B]\nGet:128 http://deb.debian.org/debian + bullseye/main amd64 tk8.6-dev amd64 8.6.11-2 [777 kB]\nGet:129 http://deb.debian.org/debian + bullseye/main amd64 tk-dev amd64 8.6.11+1 [5656 B]\nGet:130 http://deb.debian.org/debian + bullseye/main amd64 unixodbc-dev amd64 2.3.6-0.1+b1 [262 kB]\nGet:131 http://deb.debian.org/debian + bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB]\n\e[91mdebconf: delaying + package configuration, since apt-utils is not installed\n\e[0mFetched 87.8 + MB in 1s (103 MB/s)\nSelecting previously unselected package libpython3.9-minimal:amd64.\n(Reading + database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading + database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading + database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading + database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading + database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading + database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading + database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading + database ... 13069 files and directories currently installed.)\nPreparing + to unpack .../libpython3.9-minimal_3.9.2-1_amd64.deb ...\nUnpacking libpython3.9-minimal:amd64 + (3.9.2-1) ...\nSelecting previously unselected package python3.9-minimal.\nPreparing + to unpack .../python3.9-minimal_3.9.2-1_amd64.deb ...\nUnpacking python3.9-minimal + (3.9.2-1) ...\nSetting up libpython3.9-minimal:amd64 (3.9.2-1) ...\nSetting + up python3.9-minimal (3.9.2-1) ...\nSelecting previously unselected package + python3-minimal.\n(Reading database ... \n(Reading database ... 5%\n(Reading + database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading + database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading + database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading + database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading + database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading + database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading + database ... 100%\n(Reading database ... 13354 files and directories currently + installed.)\nPreparing to unpack .../0-python3-minimal_3.9.2-3_amd64.deb ...\nUnpacking + python3-minimal (3.9.2-3) ...\nSelecting previously unselected package media-types.\nPreparing + to unpack .../1-media-types_4.0.0_all.deb ...\nUnpacking media-types (4.0.0) + ...\nSelecting previously unselected package libmpdec3:amd64.\nPreparing to + unpack .../2-libmpdec3_2.5.1-1_amd64.deb ...\nUnpacking libmpdec3:amd64 (2.5.1-1) + ...\nSelecting previously unselected package libpython3.9-" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 31815-35910/35994 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:24 GMT + etag: + - '"0x8DB8D9803F64ECD"' + last-modified: + - Wed, 26 Jul 2023 05:20:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:26 GMT + x-ms-range: + - bytes=35911-40006 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "stdlib:amd64.\nPreparing to unpack .../3-libpython3.9-stdlib_3.9.2-1_amd64.deb + ...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '83' + content-range: + - bytes 35911-35993/35994 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:24 GMT + etag: + - '"0x8DB8D9803F64ECD"' + last-modified: + - Wed, 26 Jul 2023 05:20:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:26 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '35994' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:24 GMT + etag: + - '"0x8DB8D9803F64ECD"' + last-modified: + - Wed, 26 Jul 2023 05:20:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '39114' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:26 GMT + etag: + - '"0x8DB8D980530A153"' + last-modified: + - Wed, 26 Jul 2023 05:20:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '21' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:28 GMT + x-ms-range: + - bytes=35994-40089 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Unpacking libpython3.9-stdlib:amd64 (3.9.2-1) ...\nSelecting previously + unselected package python3.9.\nPreparing to unpack .../4-python3.9_3.9.2-1_amd64.deb + ...\nUnpacking python3.9 (3.9.2-1) ...\nSelecting previously unselected package + libpython3-stdlib:amd64.\nPreparing to unpack .../5-libpython3-stdlib_3.9.2-3_amd64.deb + ...\nUnpacking libpython3-stdlib:amd64 (3.9.2-3) ...\nSetting up python3-minimal + (3.9.2-3) ...\nSelecting previously unselected package python3.\n(Reading + database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading + database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading + database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading + database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading + database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading + database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading + database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading + database ... 13751 files and directories currently installed.)\nPreparing + to unpack .../000-python3_3.9.2-3_amd64.deb ...\nUnpacking python3 (3.9.2-3) + ...\nSelecting previously unselected package bzip2.\nPreparing to unpack .../001-bzip2_1.0.8-4_amd64.deb + ...\nUnpacking bzip2 (1.0.8-4) ...\nSelecting previously unselected package + xz-utils.\nPreparing to unpack .../002-xz-utils_5.2.5-2.1~deb11u1_amd64.deb + ...\nUnpacking xz-utils (5.2.5-2.1~deb11u1) ...\nSelecting previously unselected + package libsigsegv2:amd64.\nPreparing to unpack .../003-libsigsegv2_2.13-1_amd64.deb + ...\nUnpacking libsigsegv2:amd64 (2.13-1) ...\nSelecting previously unselected + package m4.\nPreparing to unpack .../004-m4_1.4.18-5_amd64.deb ...\nUnpacking + m4 (1.4.18-5) ...\nSelecting previously unselected package autoconf.\nPreparing + to unpack .../005-autoconf_2.69-14_all.deb ...\nUnpacking autoconf (2.69-14) + ...\nSelecting previously unselected package autotools-dev.\nPreparing to + unpack .../006-autotools-dev_20180224.1+nmu1_all.deb ...\nUnpacking autotools-dev + (20180224.1+nmu1) ...\nSelecting previously unselected package automake.\nPreparing + to unpack .../007-automake_1%3a1.16.3-2_all.deb ...\nUnpacking automake (1:1.16.3-2) + ...\nSelecting previously unselected package binutils-common:amd64.\nPreparing + to unpack .../008-binutils-common_2.35.2-2_amd64.deb ...\nUnpacking binutils-common:amd64 + (2.35.2-2) ...\nSelecting previously unselected package libbinutils:amd64.\nPreparing + to unpack .../009-libbinutils_2.35.2-2_amd64.deb ...\nUnpacking libbinutils:amd64 + (2.35.2-2) ...\nSelecting previously unselected package libctf-nobfd0:amd64.\nPreparing + to unpack .../010-libctf-nobfd0_2.35.2-2_amd64.deb ...\nUnpacking libctf-nobfd0:amd64 + (2.35.2-2) ...\nSelecting previously unselected package libctf0:amd64.\nPreparing + to unpack .../011-libctf0_2.35.2-2_amd64.deb ...\nUnpacking libctf0:amd64 + (2.35.2-2) ...\nSelecting previously unselected package binutils-x86-64-linux-gnu.\nPreparing + to unpack .../012-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ...\nUnpacking + binutils-x86-64-linux-gnu (2.35.2-2) ...\nSelecting previously unselected + package binutils.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3120' + content-range: + - bytes 35994-39113/39114 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:26 GMT + etag: + - '"0x8DB8D980530A153"' + last-modified: + - Wed, 26 Jul 2023 05:20:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '21' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:29 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '39114' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:26 GMT + etag: + - '"0x8DB8D980530A153"' + last-modified: + - Wed, 26 Jul 2023 05:20:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '21' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '40778' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:29 GMT + etag: + - '"0x8DB8D98066BDD39"' + last-modified: + - Wed, 26 Jul 2023 05:20:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '22' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:31 GMT + x-ms-range: + - bytes=39114-43209 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Preparing to unpack .../013-binutils_2.35.2-2_amd64.deb ...\nUnpacking + binutils (2.35.2-2) ...\nSelecting previously unselected package libisl23:amd64.\nPreparing + to unpack .../014-libisl23_0.23-1_amd64.deb ...\nUnpacking libisl23:amd64 + (0.23-1) ...\nSelecting previously unselected package libmpfr6:amd64.\nPreparing + to unpack .../015-libmpfr6_4.1.0-3_amd64.deb ...\nUnpacking libmpfr6:amd64 + (4.1.0-3) ...\nSelecting previously unselected package libmpc3:amd64.\nPreparing + to unpack .../016-libmpc3_1.2.0-1_amd64.deb ...\nUnpacking libmpc3:amd64 (1.2.0-1) + ...\nSelecting previously unselected package cpp-10.\nPreparing to unpack + .../017-cpp-10_10.2.1-6_amd64.deb ...\nUnpacking cpp-10 (10.2.1-6) ...\nSelecting + previously unselected package cpp.\nPreparing to unpack .../018-cpp_4%3a10.2.1-1_amd64.deb + ...\nUnpacking cpp (4:10.2.1-1) ...\nSelecting previously unselected package + libcc1-0:amd64.\nPreparing to unpack .../019-libcc1-0_10.2.1-6_amd64.deb ...\nUnpacking + libcc1-0:amd64 (10.2.1-6) ...\nSelecting previously unselected package libgomp1:amd64.\nPreparing + to unpack .../020-libgomp1_10.2.1-6_amd64.deb ...\nUnpacking libgomp1:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libitm1:amd64.\nPreparing + to unpack .../021-libitm1_10.2.1-6_amd64.deb ...\nUnpacking libitm1:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libatomic1:amd64.\nPreparing + to unpack .../022-libatomic1_10.2.1-6_amd64.deb ...\nUnpacking libatomic1:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libasan6:amd64.\nPreparing + to unpack .../023-libasan6_10.2.1-6_amd64.deb ...\nUnpacking libasan6:amd64 + (10.2.1-6) ...\nSelecting previously unselected package liblsan0:amd64.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1664' + content-range: + - bytes 39114-40777/40778 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:29 GMT + etag: + - '"0x8DB8D98066BDD39"' + last-modified: + - Wed, 26 Jul 2023 05:20:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '22' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '40778' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:29 GMT + etag: + - '"0x8DB8D98066BDD39"' + last-modified: + - Wed, 26 Jul 2023 05:20:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '22' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:34 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '41716' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:32 GMT + etag: + - '"0x8DB8D980806F5AD"' + last-modified: + - Wed, 26 Jul 2023 05:20:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '23' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:34 GMT + x-ms-range: + - bytes=40778-44873 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Preparing to unpack .../024-liblsan0_10.2.1-6_amd64.deb ...\nUnpacking + liblsan0:amd64 (10.2.1-6) ...\nSelecting previously unselected package libtsan0:amd64.\nPreparing + to unpack .../025-libtsan0_10.2.1-6_amd64.deb ...\nUnpacking libtsan0:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libubsan1:amd64.\nPreparing + to unpack .../026-libubsan1_10.2.1-6_amd64.deb ...\nUnpacking libubsan1:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libquadmath0:amd64.\nPreparing + to unpack .../027-libquadmath0_10.2.1-6_amd64.deb ...\nUnpacking libquadmath0:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libgcc-10-dev:amd64.\nPreparing + to unpack .../028-libgcc-10-dev_10.2.1-6_amd64.deb ...\nUnpacking libgcc-10-dev:amd64 + (10.2.1-6) ...\nSelecting previously unselected package gcc-10.\nPreparing + to unpack .../029-gcc-10_10.2.1-6_amd64.deb ...\nUnpacking gcc-10 (10.2.1-6) + ...\nSelecting previously unselected package gcc.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '938' + content-range: + - bytes 40778-41715/41716 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:32 GMT + etag: + - '"0x8DB8D980806F5AD"' + last-modified: + - Wed, 26 Jul 2023 05:20:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '23' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:35 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '41716' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:32 GMT + etag: + - '"0x8DB8D980806F5AD"' + last-modified: + - Wed, 26 Jul 2023 05:20:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '23' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:37 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '44686' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:35 GMT + etag: + - '"0x8DB8D980A84DF27"' + last-modified: + - Wed, 26 Jul 2023 05:20:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '25' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:37 GMT + x-ms-range: + - bytes=41716-45811 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Preparing to unpack .../030-gcc_4%3a10.2.1-1_amd64.deb ...\nUnpacking + gcc (4:10.2.1-1) ...\nSelecting previously unselected package libstdc++-10-dev:amd64.\nPreparing + to unpack .../031-libstdc++-10-dev_10.2.1-6_amd64.deb ...\nUnpacking libstdc++-10-dev:amd64 + (10.2.1-6) ...\nSelecting previously unselected package g++-10.\nPreparing + to unpack .../032-g++-10_10.2.1-6_amd64.deb ...\nUnpacking g++-10 (10.2.1-6) + ...\nSelecting previously unselected package g++.\nPreparing to unpack .../033-g++_4%3a10.2.1-1_amd64.deb + ...\nUnpacking g++ (4:10.2.1-1) ...\nSelecting previously unselected package + make.\nPreparing to unpack .../034-make_4.3-4.1_amd64.deb ...\nUnpacking make + (4.3-4.1) ...\nSelecting previously unselected package libdpkg-perl.\nPreparing + to unpack .../035-libdpkg-perl_1.20.12_all.deb ...\nUnpacking libdpkg-perl + (1.20.12) ...\nSelecting previously unselected package patch.\nPreparing to + unpack .../036-patch_2.7.6-7_amd64.deb ...\nUnpacking patch (2.7.6-7) ...\nSelecting + previously unselected package dpkg-dev.\nPreparing to unpack .../037-dpkg-dev_1.20.12_all.deb + ...\nUnpacking dpkg-dev (1.20.12) ...\nSelecting previously unselected package + build-essential.\nPreparing to unpack .../038-build-essential_12.9_amd64.deb + ...\nUnpacking build-essential (12.9) ...\nSelecting previously unselected + package libelf1:amd64.\r\nPreparing to unpack .../039-libelf1_0.183-1_amd64.deb + ...\nUnpacking libelf1:amd64 (0.183-1) ...\nSelecting previously unselected + package libdw1:amd64.\nPreparing to unpack .../040-libdw1_0.183-1_amd64.deb + ...\nUnpacking libdw1:amd64 (0.183-1) ...\nSelecting previously unselected + package libbabeltrace1:amd64.\nPreparing to unpack .../041-libbabeltrace1_1.5.8-1+b3_amd64.deb + ...\nUnpacking libbabeltrace1:amd64 (1.5.8-1+b3) ...\nSelecting previously + unselected package libdebuginfod1:amd64.\nPreparing to unpack .../042-libdebuginfod1_0.183-1_amd64.deb + ...\nUnpacking libdebuginfod1:amd64 (0.183-1) ...\nSelecting previously unselected + package libipt2.\nPreparing to unpack .../043-libipt2_2.0.3-1_amd64.deb ...\nUnpacking + libipt2 (2.0.3-1) ...\nSelecting previously unselected package libpython3.9:amd64.\nPreparing + to unpack .../044-libpython3.9_3.9.2-1_amd64.deb ...\nUnpacking libpython3.9:amd64 + (3.9.2-1) ...\nSelecting previously unselected package libsource-highlight-common.\nPreparing + to unpack .../045-libsource-highlight-common_3.1.9-3_all.deb ...\nUnpacking + libsource-highlight-common (3.1.9-3) ...\nSelecting previously unselected + package libboost-regex1.74.0:amd64.\nPreparing to unpack .../046-libboost-regex1.74.0_1.74.0-9_amd64.deb + ...\nUnpacking libboost-regex1.74.0:amd64 (1.74.0-9) ...\nSelecting previously + unselected package libsource-highlight4v5.\nPreparing to unpack .../047-libsource-highlight4v5_3.1.9-3+b1_amd64.deb + ...\nUnpacking libsource-highlight4v5 (3.1.9-3+b1) ...\nSelecting previously + unselected package gdb.\nPreparing to unpack .../048-gdb_10.1-1.7_amd64.deb + ...\nUnpacking gdb (10.1-1.7) ...\nSelecting previously unselected package + libjson-perl.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2970' + content-range: + - bytes 41716-44685/44686 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:35 GMT + etag: + - '"0x8DB8D980A84DF27"' + last-modified: + - Wed, 26 Jul 2023 05:20:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '25' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:37 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '44686' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:35 GMT + etag: + - '"0x8DB8D980A84DF27"' + last-modified: + - Wed, 26 Jul 2023 05:20:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '25' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:40 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48500' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:38 GMT + etag: + - '"0x8DB8D980BB9B99B"' + last-modified: + - Wed, 26 Jul 2023 05:20:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '26' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:40 GMT + x-ms-range: + - bytes=44686-48781 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Preparing to unpack .../049-libjson-perl_4.03000-1_all.deb ...\nUnpacking + libjson-perl (4.03000-1) ...\nSelecting previously unselected package libperlio-gzip-perl.\nPreparing + to unpack .../050-libperlio-gzip-perl_0.19-1+b7_amd64.deb ...\nUnpacking libperlio-gzip-perl + (0.19-1+b7) ...\nSelecting previously unselected package lcov.\nPreparing + to unpack .../051-lcov_1.14-2_all.deb ...\nUnpacking lcov (1.14-2) ...\nSelecting + previously unselected package libbrotli-dev:amd64.\nPreparing to unpack .../052-libbrotli-dev_1.0.9-2+b2_amd64.deb + ...\nUnpacking libbrotli-dev:amd64 (1.0.9-2+b2) ...\nSelecting previously + unselected package libbz2-dev:amd64.\nPreparing to unpack .../053-libbz2-dev_1.0.8-4_amd64.deb + ...\nUnpacking libbz2-dev:amd64 (1.0.8-4) ...\nSelecting previously unselected + package libexpat1-dev:amd64.\nPreparing to unpack .../054-libexpat1-dev_2.2.10-2+deb11u5_amd64.deb + ...\nUnpacking libexpat1-dev:amd64 (2.2.10-2+deb11u5) ...\nSelecting previously + unselected package libffi-dev:amd64.\nPreparing to unpack .../055-libffi-dev_3.3-6_amd64.deb + ...\nUnpacking libffi-dev:amd64 (3.3-6) ...\nSelecting previously unselected + package libpng-dev:amd64.\nPreparing to unpack .../056-libpng-dev_1.6.37-3_amd64.deb + ...\nUnpacking libpng-dev:amd64 (1.6.37-3) ...\nSelecting previously unselected + package libfreetype-dev:amd64.\nPreparing to unpack .../057-libfreetype-dev_2.10.4+dfsg-1+deb11u1_amd64.deb + ...\nUnpacking libfreetype-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...\nSelecting + previously unselected package libfreetype6-dev:amd64.\nPreparing to unpack + .../058-libfreetype6-dev_2.10.4+dfsg-1+deb11u1_amd64.deb ...\nUnpacking libfreetype6-dev:amd64 + (2.10.4+dfsg-1+deb11u1) ...\nSelecting previously unselected package uuid-dev:amd64.\nPreparing + to unpack .../059-uuid-dev_2.36.1-8+deb11u1_amd64.deb ...\nUnpacking uuid-dev:amd64 + (2.36.1-8+deb11u1) ...\nSelecting previously unselected package pkg-config.\nPreparing + to unpack .../060-pkg-config_0.29.2-1_amd64.deb ...\nUnpacking pkg-config + (0.29.2-1) ...\nSelecting previously unselected package libfontconfig-dev:amd64.\nPreparing + to unpack .../061-libfontconfig-dev_2.13.1-4.2_amd64.deb ...\nUnpacking libfontconfig-dev:amd64 + (2.13.1-4.2) ...\nSelecting previously unselected package libfontconfig1-dev:amd64.\nPreparing + to unpack .../062-libfontconfig1-dev_2.13.1-4.2_amd64.deb ...\nUnpacking libfontconfig1-dev:amd64 + (2.13.1-4.2) ...\nSelecting previously unselected package libgdbm-dev:amd64.\nPreparing + to unpack .../063-libgdbm-dev_1.19-2_amd64.deb ...\nUnpacking libgdbm-dev:amd64 + (1.19-2) ...\nSelecting previously unselected package libio-pty-perl.\nPreparing + to unpack .../064-libio-pty-perl_1%3a1.15-2_amd64.deb ...\nUnpacking libio-pty-perl + (1:1.15-2) ...\nSelecting previously unselected package libipc-run-perl.\nPreparing + to unpack .../065-libipc-run-perl_20200505.0-1_all.deb ...\nUnpacking libipc-run-perl + (20200505.0-1) ...\nSelecting previously unselected package libltdl7:amd64.\nPreparing + to unpack .../066-libltdl7_2.4.6-15_amd64.deb ...\nUnpacking libltdl7:amd64 + (2.4.6-15) ...\nSelecting previously unselected package libltdl-dev:amd64.\nPreparing + to unpack .../067-libltdl-dev_2.4.6-15_amd64.deb ...\nUnpacking libltdl-dev:amd64 + (2.4.6-15) ...\nSelecting previously unselected package liblzma-dev:amd64.\nPreparing + to unpack .../068-liblzma-dev_5.2.5-2.1~deb11u1_amd64.deb ...\nUnpacking liblzma-dev:amd64 + (5.2.5-2.1~deb11u1) ...\nSelecting previously unselected package libncurses6:amd64.\nPreparing + to unpack .../069-libncurses6_6.2+20201114-2+deb11u1_amd64.deb ...\nUnpacking + libncurses6:amd64 (6.2+20201114-2+deb11u1) ...\nSelecting previously unselected + package libncurses-dev:amd64.\nPreparing to unpack .../070-libncurses-dev_6.2+20201114-2+deb11u1_amd64.deb + ...\nUnpacking libncurses-dev:amd64 (6.2+20201114-2+deb11u1) ...\nSelecting + previously unselected package libncurses5-dev:amd64.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3814' + content-range: + - bytes 44686-48499/48500 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:38 GMT + etag: + - '"0x8DB8D980BB9B99B"' + last-modified: + - Wed, 26 Jul 2023 05:20:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '26' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:41 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48500' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:38 GMT + etag: + - '"0x8DB8D980BB9B99B"' + last-modified: + - Wed, 26 Jul 2023 05:20:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '26' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:43 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '52179' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:40 GMT + etag: + - '"0x8DB8D980D022D12"' + last-modified: + - Wed, 26 Jul 2023 05:20:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '27' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:43 GMT + x-ms-range: + - bytes=48500-52595 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Preparing to unpack .../071-libncurses5-dev_6.2+20201114-2+deb11u1_amd64.deb + ...\nUnpacking libncurses5-dev:amd64 (6.2+20201114-2+deb11u1) ...\nSelecting + previously unselected package libodbc1:amd64.\nPreparing to unpack .../072-libodbc1_2.3.6-0.1+b1_amd64.deb + ...\nUnpacking libodbc1:amd64 (2.3.6-0.1+b1) ...\nSelecting previously unselected + package libpq5:amd64.\nPreparing to unpack .../073-libpq5_13.11-0+deb11u1_amd64.deb + ...\nUnpacking libpq5:amd64 (13.11-0+deb11u1) ...\nSelecting previously unselected + package libpq-dev.\nPreparing to unpack .../074-libpq-dev_13.11-0+deb11u1_amd64.deb + ...\nUnpacking libpq-dev (13.11-0+deb11u1) ...\nSelecting previously unselected + package libpthread-stubs0-dev:amd64.\nPreparing to unpack .../075-libpthread-stubs0-dev_0.4-1_amd64.deb + ...\nUnpacking libpthread-stubs0-dev:amd64 (0.4-1) ...\nSelecting previously + unselected package libreadline-dev:amd64.\nPreparing to unpack .../076-libreadline-dev_8.1-1_amd64.deb + ...\nUnpacking libreadline-dev:amd64 (8.1-1) ...\nSelecting previously unselected + package libsqlite3-dev:amd64.\nPreparing to unpack .../077-libsqlite3-dev_3.34.1-3_amd64.deb + ...\nUnpacking libsqlite3-dev:amd64 (3.34.1-3) ...\nSelecting previously unselected + package libtcl8.6:amd64.\nPreparing to unpack .../078-libtcl8.6_8.6.11+dfsg-1_amd64.deb + ...\nUnpacking libtcl8.6:amd64 (8.6.11+dfsg-1) ...\nSelecting previously unselected + package libtime-duration-perl.\nPreparing to unpack .../079-libtime-duration-perl_1.21-1_all.deb + ...\nUnpacking libtime-duration-perl (1.21-1) ...\nSelecting previously unselected + package libtimedate-perl.\nPreparing to unpack .../080-libtimedate-perl_2.3300-2_all.deb + ...\nUnpacking libtimedate-perl (2.3300-2) ...\nSelecting previously unselected + package libxft2:amd64.\nPreparing to unpack .../081-libxft2_2.3.2-2_amd64.deb + ...\nUnpacking libxft2:amd64 (2.3.2-2) ...\nSelecting previously unselected + package x11-common.\nPreparing to unpack .../082-x11-common_1%3a7.7+22_all.deb + ...\nUnpacking x11-common (1:7.7+22) ...\nSelecting previously unselected + package libxss1:amd64.\nPreparing to unpack .../083-libxss1_1%3a1.2.3-1_amd64.deb + ...\nUnpacking libxss1:amd64 (1:1.2.3-1) ...\nSelecting previously unselected + package libtk8.6:amd64.\nPreparing to unpack .../084-libtk8.6_8.6.11-2_amd64.deb + ...\nUnpacking libtk8.6:amd64 (8.6.11-2) ...\nSelecting previously unselected + package xorg-sgml-doctools.\nPreparing to unpack .../085-xorg-sgml-doctools_1%3a1.11-1.1_all.deb + ...\nUnpacking xorg-sgml-doctools (1:1.11-1.1) ...\nSelecting previously unselected + package x11proto-dev.\nPreparing to unpack .../086-x11proto-dev_2020.1-1_all.deb + ...\nUnpacking x11proto-dev (2020.1-1) ...\nSelecting previously unselected + package libxau-dev:amd64.\nPreparing to unpack .../087-libxau-dev_1%3a1.0.9-1_amd64.deb + ...\nUnpacking libxau-dev:amd64 (1:1.0.9-1) ...\nSelecting previously unselected + package x11proto-core-dev.\nPreparing to unpack .../088-x11proto-core-dev_2020.1-1_all.deb + ...\nUnpacking x11proto-core-dev (2020.1-1) ...\nSelecting previously unselected + package libxdmcp-dev:amd64.\nPreparing to unpack .../089-libxdmcp-dev_1%3a1.1.2-3_amd64.deb + ...\nUnpacking libxdmcp-dev:amd64 (1:1.1.2-3) ...\nSelecting previously unselected + package xtrans-dev.\nPreparing to unpack .../090-xtrans-dev_1.4.0-1_all.deb + ...\nUnpacking xtrans-dev (1.4.0-1) ...\nSelecting previously unselected package + libxcb1-dev:amd64.\nPreparing to unpack .../091-libxcb1-dev_1.14-3_amd64.deb + ...\nUnpacking libxcb1-dev:amd64 (1.14-3) ...\nSelecting previously unselected + package libx11-dev:amd64.\nPreparing to unpack .../092-libx11-dev_2%3a1.7.2-1+deb11u1_amd64.deb + ...\nUnpacking libx11-dev:amd64 (2:1.7.2-1+deb11u1) ...\nSelecting previously + unselected package x11proto-xext-dev.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3679' + content-range: + - bytes 48500-52178/52179 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:40 GMT + etag: + - '"0x8DB8D980D022D12"' + last-modified: + - Wed, 26 Jul 2023 05:20:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '27' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:43 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '55329' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:41 GMT + etag: + - '"0x8DB8D980E349947"' + last-modified: + - Wed, 26 Jul 2023 05:20:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '28' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:43 GMT + x-ms-range: + - bytes=52179-56274 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Preparing to unpack .../093-x11proto-xext-dev_2020.1-1_all.deb ...\nUnpacking + x11proto-xext-dev (2020.1-1) ...\nSelecting previously unselected package + libxext-dev:amd64.\nPreparing to unpack .../094-libxext-dev_2%3a1.3.3-1.1_amd64.deb + ...\nUnpacking libxext-dev:amd64 (2:1.3.3-1.1) ...\nSelecting previously unselected + package libxrender-dev:amd64.\nPreparing to unpack .../095-libxrender-dev_1%3a0.9.10-1_amd64.deb + ...\nUnpacking libxrender-dev:amd64 (1:0.9.10-1) ...\nSelecting previously + unselected package libxft-dev:amd64.\nPreparing to unpack .../096-libxft-dev_2.3.2-2_amd64.deb + ...\nUnpacking libxft-dev:amd64 (2.3.2-2) ...\nSelecting previously unselected + package x11proto-scrnsaver-dev.\nPreparing to unpack .../097-x11proto-scrnsaver-dev_2020.1-1_all.deb + ...\nUnpacking x11proto-scrnsaver-dev (2020.1-1) ...\nSelecting previously + unselected package libxss-dev:amd64.\nPreparing to unpack .../098-libxss-dev_1%3a1.2.3-1_amd64.deb + ...\nUnpacking libxss-dev:amd64 (1:1.2.3-1) ...\nSelecting previously unselected + package lzma.\nPreparing to unpack .../099-lzma_9.22-2.2_amd64.deb ...\nUnpacking + lzma (9.22-2.2) ...\nSelecting previously unselected package lzma-dev.\nPreparing + to unpack .../100-lzma-dev_9.22-2.2_all.deb ...\nUnpacking lzma-dev (9.22-2.2) + ...\nSelecting previously unselected package moreutils.\nPreparing to unpack + .../101-moreutils_0.65-1_amd64.deb ...\nUnpacking moreutils (0.65-1) ...\nSelecting + previously unselected package odbcinst1debian2:amd64.\nPreparing to unpack + .../102-odbcinst1debian2_2.3.6-0.1+b1_amd64.deb ...\nUnpacking odbcinst1debian2:amd64 + (2.3.6-0.1+b1) ...\nSelecting previously unselected package odbcinst.\nPreparing + to unpack .../103-odbcinst_2.3.6-0.1+b1_amd64.deb ...\nUnpacking odbcinst + (2.3.6-0.1+b1) ...\nSelecting previously unselected package python-pip-whl.\nPreparing + to unpack .../104-python-pip-whl_20.3.4-4+deb11u1_all.deb ...\nUnpacking python-pip-whl + (20.3.4-4+deb11u1) ...\nSelecting previously unselected package python3-lib2to3.\nPreparing + to unpack .../105-python3-lib2to3_3.9.2-1_all.deb ...\nUnpacking python3-lib2to3 + (3.9.2-1) ...\nSelecting previously unselected package python3-distutils.\nPreparing + to unpack .../106-python3-distutils_3.9.2-1_all.deb ...\nUnpacking python3-distutils + (3.9.2-1) ...\nSelecting previously unselected package python3-pkg-resources.\nPreparing + to unpack .../107-python3-pkg-resources_52.0.0-4_all.deb ...\nUnpacking python3-pkg-resources + (52.0.0-4) ...\nSelecting previously unselected package python3-setuptools.\nPreparing + to unpack .../108-python3-setuptools_52.0.0-4_all.deb ...\nUnpacking python3-setuptools + (52.0.0-4) ...\nSelecting previously unselected package python3-wheel.\nPreparing + to unpack .../109-python3-wheel_0.34.2-1_all.deb ...\nUnpacking python3-wheel + (0.34.2-1) ...\nSelecting previously unselected package python3-pip.\nPreparing + to unpack .../110-python3-pip_20.3.4-4+deb11u1_all.deb ...\nUnpacking python3-pip + (20.3.4-4+deb11u1) ...\nSelecting previously unselected package swig4.0.\nPreparing + to unpack .../111-swig4.0_4.0.2-1_amd64.deb ...\nUnpacking swig4.0 (4.0.2-1) + ...\nSelecting previously unselected package swig.\nPreparing to unpack .../112-swig_4.0.2-1_all.deb + ...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3150' + content-range: + - bytes 52179-55328/55329 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:41 GMT + etag: + - '"0x8DB8D980E349947"' + last-modified: + - Wed, 26 Jul 2023 05:20:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '28' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:43 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '55329' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:41 GMT + etag: + - '"0x8DB8D980E349947"' + last-modified: + - Wed, 26 Jul 2023 05:20:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '28' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '59619' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:43 GMT + etag: + - '"0x8DB8D980F670578"' + last-modified: + - Wed, 26 Jul 2023 05:20:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '29' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:45 GMT + x-ms-range: + - bytes=55329-59424 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: 'Unpacking swig (4.0.2-1) ... + + Selecting previously unselected package tcl8.6. + + Preparing to unpack .../113-tcl8.6_8.6.11+dfsg-1_amd64.deb ... + + Unpacking tcl8.6 (8.6.11+dfsg-1) ... + + Selecting previously unselected package tcl. + + Preparing to unpack .../114-tcl_8.6.11+1_amd64.deb ... + + Unpacking tcl (8.6.11+1) ... + + Selecting previously unselected package tcl8.6-dev:amd64. + + Preparing to unpack .../115-tcl8.6-dev_8.6.11+dfsg-1_amd64.deb ... + + Unpacking tcl8.6-dev:amd64 (8.6.11+dfsg-1) ... + + Selecting previously unselected package tcl-dev:amd64. + + Preparing to unpack .../116-tcl-dev_8.6.11+1_amd64.deb ... + + Unpacking tcl-dev:amd64 (8.6.11+1) ... + + Selecting previously unselected package tk8.6. + + Preparing to unpack .../117-tk8.6_8.6.11-2_amd64.deb ... + + Unpacking tk8.6 (8.6.11-2) ... + + Selecting previously unselected package tk. + + Preparing to unpack .../118-tk_8.6.11+1_amd64.deb ... + + Unpacking tk (8.6.11+1) ... + + Selecting previously unselected package tk8.6-dev:amd64. + + Preparing to unpack .../119-tk8.6-dev_8.6.11-2_amd64.deb ... + + Unpacking tk8.6-dev:amd64 (8.6.11-2) ... + + Selecting previously unselected package tk-dev:amd64. + + Preparing to unpack .../120-tk-dev_8.6.11+1_amd64.deb ... + + Unpacking tk-dev:amd64 (8.6.11+1) ... + + Selecting previously unselected package unixodbc-dev:amd64. + + Preparing to unpack .../121-unixodbc-dev_2.3.6-0.1+b1_amd64.deb ... + + Unpacking unixodbc-dev:amd64 (2.3.6-0.1+b1) ... + + Selecting previously unselected package unzip. + + Preparing to unpack .../122-unzip_6.0-26+deb11u1_amd64.deb ... + + Unpacking unzip (6.0-26+deb11u1) ... + + Setting up media-types (4.0.0) ... + + Setting up libxft2:amd64 (2.3.2-2) ... + + Setting up libio-pty-perl (1:1.15-2) ... + + Setting up unzip (6.0-26+deb11u1) ... + + Setting up libpng-dev:amd64 (1.6.37-3) ... + + Setting up binutils-common:amd64 (2.35.2-2) ... + + Setting up x11-common (1:7.7+22) ... + + debconf: unable to initialize frontend: Dialog + + debconf: (TERM is not set, so the dialog frontend is not usable.) + + debconf: falling back to frontend: Readline + + invoke-rc.d: could not determine current runlevel + + invoke-rc.d: policy-rc.d denied execution of start. + + Setting up libpq5:amd64 (13.11-0+deb11u1) ... + + Setting up libctf-nobfd0:amd64 (2.35.2-2) ... + + Setting up libpq-dev (13.11-0+deb11u1) ... + + Setting up libgomp1:amd64 (10.2.1-6) ... + + Setting up bzip2 (1.0.8-4) ... + + Setting up libffi-dev:amd64 (3.3-6) ... + + Setting up libpthread-stubs0-dev:amd64 (0.4-1) ... + + Setting up libsource-highlight-common (3.1.9-3) ... + + Setting up libasan6:amd64 (10.2.1-6) ... + + Setting up xtrans-dev (1.4.0-1) ... + + Setting up autotools-dev (20180224.1+nmu1) ... + + Setting up libexpat1-dev:amd64 (2.2.10-2+deb11u5) ... + + Setting up libsqlite3-dev:amd64 (3.34.1-3) ... + + Setting up make (4.3-4.1) ... + + Setting up libmpfr6:amd64 (4.1.0-3) ... + + Setting up uuid-dev:amd64 (2.36.1-8+deb11u1) ... + + Setting up libncurses6:amd64 (6.2+20201114-2+deb11u1) ... + + Setting up libsigsegv2:amd64 (2.13-1) ... + + Setting up xz-utils (5.2.5-2.1~deb11u1) ... + + update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in + auto mode + + Setting up libboost-regex1.74.0:amd64 (1.74.0-9) ... + + Setting up libquadmath0:amd64 (10.2.1-6) ... + + Setting up libmpc3:amd64 (1.2.0-1) ... + + Setting up libatomic1:amd64 (10.2.1-6) ... + + Setting up patch (2.7.6-7) ... + + Setting up libtcl8.6:amd64 (8.6.11+dfsg-1) ... + + Setting up libipt2 (2.0.3-1) ... + + Setting up lzma (9.22-2.2) ... + + update-alternatives: using /usr/bin/lzmp to provide /usr/bin/lzma (lzma) in + auto mode + + Setting up libipc-run-perl (20200505.0-1) ... + + Setting up libltdl7:amd64 (2.4.6-15) ... + + Setting up libdpkg-perl (1.20.12) ... + + Setting up lzma-dev (9.22-2.2) ... + + Setting up libtime-duration-perl (1.21-1) ... + + Setting up libtimedate-perl (2.3300-2) ... + + Setting up liblzma-dev:amd64 (5.2.5-2.1~deb11u1) ... + + Setting up libubsan1:amd64 (10.2.1-6) ... + + Setting up libjson-perl (4.03000-1) ... + + Setting up libmpdec3:amd64 (2.5.1-1) ... + + Setting up xorg-sgml-doctools (1:1.11-1.1) ... + + Setting up python-pip-whl (20.3.4-4+deb11u1) ... + + Setting up libxss1:amd64 (1:1.2.3-1) ... + + Setting up libgdbm-dev:amd64 (1.19-2) ... + + Setting up libbinutils:amd64 (2.35.2-2) ... + + Setting up swig4.0 (4.0.2-1) ... + + Setting up libisl23:a' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 55329-59424/59619 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:43 GMT + etag: + - '"0x8DB8D980F670578"' + last-modified: + - Wed, 26 Jul 2023 05:20:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '29' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:45 GMT + x-ms-range: + - bytes=59425-63520 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "md64 (0.23-1) ...\nSetting up libperlio-gzip-perl (0.19-1+b7) ...\nSetting + up libelf1:amd64 (0.183-1) ...\nSetting up libcc1-0:amd64 (10.2.1-6) ...\nSetting + up libbrotli-dev:amd64 (1.0.9-2+b2) ...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '194' + content-range: + - bytes 59425-59618/59619 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:43 GMT + etag: + - '"0x8DB8D980F670578"' + last-modified: + - Wed, 26 Jul 2023 05:20:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '29' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:46 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '59619' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:43 GMT + etag: + - '"0x8DB8D980F670578"' + last-modified: + - Wed, 26 Jul 2023 05:20:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '29' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '61303' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:46 GMT + etag: + - '"0x8DB8D98109C7B76"' + last-modified: + - Wed, 26 Jul 2023 05:20:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:48 GMT + x-ms-range: + - bytes=59619-63714 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Setting up liblsan0:amd64 (10.2.1-6) ...\nSetting up cpp-10 (10.2.1-6) + ...\nSetting up libitm1:amd64 (10.2.1-6) ...\nSetting up libsource-highlight4v5 + (3.1.9-3+b1) ...\nSetting up libpython3.9-stdlib:amd64 (3.9.2-1) ...\nSetting + up libpython3-stdlib:amd64 (3.9.2-3) ...\nSetting up libbz2-dev:amd64 (1.0.8-4) + ...\nSetting up libtsan0:amd64 (10.2.1-6) ...\nSetting up libctf0:amd64 (2.35.2-2) + ...\nSetting up x11proto-dev (2020.1-1) ...\nSetting up libdw1:amd64 (0.183-1) + ...\nSetting up tcl8.6 (8.6.11+dfsg-1) ...\nSetting up libncurses-dev:amd64 + (6.2+20201114-2+deb11u1) ...\nSetting up swig (4.0.2-1) ...\nSetting up moreutils + (0.65-1) ...\nSetting up libxau-dev:amd64 (1:1.0.9-1) ...\nSetting up libgcc-10-dev:amd64 + (10.2.1-6) ...\nSetting up libtk8.6:amd64 (8.6.11-2) ...\nSetting up libdebuginfod1:amd64 + (0.183-1) ...\nSetting up m4 (1.4.18-5) ...\nSetting up libreadline-dev:amd64 + (8.1-1) ...\nSetting up libfreetype-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...\nSetting + up libxdmcp-dev:amd64 (1:1.1.2-3) ...\nSetting up libpython3.9:amd64 (3.9.2-1) + ...\nSetting up x11proto-core-dev (2020.1-1) ...\nSetting up pkg-config (0.29.2-1) + ...\nSetting up libodbc1:amd64 (2.3.6-0.1+b1) ...\nSetting up libbabeltrace1:amd64 + (1.5.8-1+b3) ...\nSetting up autoconf (2.69-14) ...\nSetting up x11proto-xext-dev + (2020.1-1) ...\nSetting up cpp (4:10.2.1-1) ...\nSetting up tcl (8.6.11+1) + ...\nSetting up libncurses5-dev:amd64 (6.2+20201114-2+deb11u1) ...\nSetting + up x11proto-scrnsaver-dev (2020.1-1) ...\nSetting up python3.9 (3.9.2-1) ...\nSetting + up binutils-x86-64-linux-gnu (2.35.2-2) ...\nSetting up automake (1:1.16.3-2) + ...\nupdate-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake + (automake) in auto mode\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1684' + content-range: + - bytes 59619-61302/61303 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:46 GMT + etag: + - '"0x8DB8D98109C7B76"' + last-modified: + - Wed, 26 Jul 2023 05:20:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '61303' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:46 GMT + etag: + - '"0x8DB8D98109C7B76"' + last-modified: + - Wed, 26 Jul 2023 05:20:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:51 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '63956' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:49 GMT + etag: + - '"0x8DB8D9812626B4E"' + last-modified: + - Wed, 26 Jul 2023 05:20:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:51 GMT + x-ms-range: + - bytes=61303-65398 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Setting up tk8.6 (8.6.11-2) ...\nSetting up libstdc++-10-dev:amd64 + (10.2.1-6) ...\nSetting up libxcb1-dev:amd64 (1.14-3) ...\nSetting up libx11-dev:amd64 + (2:1.7.2-1+deb11u1) ...\nSetting up python3 (3.9.2-3) ...\nrunning python + rtupdate hooks for python3.9...\nrunning python post-rtupdate hooks for python3.9...\nSetting + up binutils (2.35.2-2) ...\nSetting up python3-wheel (0.34.2-1) ...\nSetting + up dpkg-dev (1.20.12) ...\nSetting up libfreetype6-dev:amd64 (2.10.4+dfsg-1+deb11u1) + ...\nSetting up libltdl-dev:amd64 (2.4.6-15) ...\nSetting up gdb (10.1-1.7) + ...\nSetting up gcc-10 (10.2.1-6) ...\nSetting up libxext-dev:amd64 (2:1.3.3-1.1) + ...\nSetting up tk (8.6.11+1) ...\nSetting up python3-lib2to3 (3.9.2-1) ...\nSetting + up libxrender-dev:amd64 (1:0.9.10-1) ...\nSetting up python3-pkg-resources + (52.0.0-4) ...\nSetting up python3-distutils (3.9.2-1) ...\nSetting up g++-10 + (10.2.1-6) ...\nSetting up python3-setuptools (52.0.0-4) ...\nSetting up libfontconfig-dev:amd64 + (2.13.1-4.2) ...\nSetting up tcl8.6-dev:amd64 (8.6.11+dfsg-1) ...\nSetting + up libxss-dev:amd64 (1:1.2.3-1) ...\nSetting up gcc (4:10.2.1-1) ...\nSetting + up python3-pip (20.3.4-4+deb11u1) ...\nSetting up tcl-dev:amd64 (8.6.11+1) + ...\nSetting up g++ (4:10.2.1-1) ...\nupdate-alternatives: using /usr/bin/g++ + to provide /usr/bin/c++ (c++) in auto mode\nSetting up build-essential (12.9) + ...\nSetting up libxft-dev:amd64 (2.3.2-2) ...\nSetting up libfontconfig1-dev:amd64 + (2.13.1-4.2) ...\nSetting up lcov (1.14-2) ...\nSetting up tk8.6-dev:amd64 + (8.6.11-2) ...\nSetting up tk-dev:amd64 (8.6.11+1) ...\nSetting up odbcinst1debian2:amd64 + (2.3.6-0.1+b1) ...\nSetting up unixodbc-dev:amd64 (2.3.6-0.1+b1) ...\nSetting + up odbcinst (2.3.6-0.1+b1) ...\nProcessing triggers for libc-bin (2.31-13+deb11u6) + ...\n\e[91m+ rm -rf /var/lib/apt/lists/auxfiles /var/lib/apt/lists/deb.debian.org_debian-security_dists_bullseye-security_InRelease + /var/lib/apt/lists/deb.debian.org_debian-security_dists_bullseye-security_main_binary-amd64_Packages.lz4 + /var/lib/apt/lists/deb.debian.\e[0m\e[91morg_debian_dists_bullseye-updates_InRelease + /var/lib/apt/lists/deb.debian.org_debian_dists_bullseye-updates_main_binary-amd64_Packages.lz4 + /var/lib/apt/lists/deb.debian.org_debian_dists_bullseye_InRelease /var/lib/apt/lists/deb.debian.org_debian_dists_bull\e[0m\e[91mseye_main_binary-amd64_Packages.lz4 + /var/lib/apt/lists/lock /var/lib/apt/lists/partial\n\e[0m\e[91m+ tmpDir=/opt/tmp\n+ + imagesDir=/opt/tmp/images\n+ buildDir=/opt/tmp/build\n+ mkdir -p /usr/local/share/pip-cache/lib\n\e[0m\e[91m+ + chmod -R 777 /usr/local/share/pip-cache\n\e[0m\e[91m+ pip3 install pip --upgrade\n\e[0mRequirement + already satisfied: pip in /usr/lib/python3/dist-packages (20.3.4)\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2653' + content-range: + - bytes 61303-63955/63956 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:49 GMT + etag: + - '"0x8DB8D9812626B4E"' + last-modified: + - Wed, 26 Jul 2023 05:20:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:51 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '63956' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:49 GMT + etag: + - '"0x8DB8D9812626B4E"' + last-modified: + - Wed, 26 Jul 2023 05:20:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:54 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '69084' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:52 GMT + etag: + - '"0x8DB8D9814ECF0CE"' + last-modified: + - Wed, 26 Jul 2023 05:20:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '33' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:54 GMT + x-ms-range: + - bytes=63956-68051 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Collecting pip\n Downloading pip-23.2.1-py3-none-any.whl (2.1 MB)\nInstalling + collected packages: pip\n Attempting uninstall: pip\n Found existing installation: + pip 20.3.4\n Not uninstalling pip at /usr/lib/python3/dist-packages, outside + environment /usr\n Can't uninstall 'pip'. No files were found to uninstall.\nSuccessfully + installed pip-23.2.1\n\e[91m+ python3 -m pip install --upgrade cython\n\e[0mCollecting + cython\r\n Obtaining dependency information for cython from https://files.pythonhosted.org/packages/15/37/314c82797f3798d738f5bde4b85c01f54b2b81acf516fb3fcbc6896c5f8f/Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata\n + \ Downloading Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata + (3.1 kB)\nDownloading Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + (3.6 MB)\n \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 + 3.6/3.6 MB 62.8 MB/s eta 0:00:00\nInstalling collected packages: cython\nSuccessfully + installed cython-3.0.0\n\e[91mWARNING: Running pip as the 'root' user can + result in broken permissions and conflicting behaviour with the system package + manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv\n\e[0m\e[91m+ + pip3 install --upgrade cython\n\e[0mRequirement already satisfied: cython + in /usr/local/lib/python3.9/dist-packages (3.0.0)\n\e[91mWARNING: Running + pip as the 'root' user can result in broken permissions and conflicting behaviour + with the system package manager. It is recommended to use a virtual environment + instead: https://pip.pypa.io/warnings/venv\n\e[0m\e[91m+ . /opt/tmp/build/__pythonVersions.sh\n++ + PYTHON_RUNTIME_BASE_TAG=20230316.1\n++ PIP_VERSION=21.2.4\n++ PYTHON27_VERSION=2.7.18\n++ + PYTHON36_VERSION=3.6.15\n++ PYTHON37_VERSION=3.7.15\n++ PYTHON38_VERSION=3.8.16\n\e[0m\e[91m++ + PYTHON39_VERSION=3.9.15\n\e[0m\e[91m++ PYTHON310_VERSION=3.10.8\n\e[0m\e[91m++ + PYTHON311_VERSION=3.11.0\n\e[0m\e[91m+ /opt/tmp/images/installPlatform.sh + python 3.8.16\n\e[0m\e[91m+++ dirname /opt/tmp/images/installPlatform.sh\n\e[0m\e[91m++ + cd /opt/tmp/images\n++ pwd\n\e[0m\e[91m+ CURRENT_DIR=/opt/tmp/images\n\e[0m\e[91m+ + source /opt/tmp/images/__common.sh\n\e[0m\e[91m++++ dirname /opt/tmp/images/__common.sh\n\e[0m\e[91m+++ + cd /opt/tmp/images\n\e[0m\e[91m+++ pwd\n\e[0m\e[91m++ __CURRENT_DIR=/opt/tmp/images\n\e[0m\e[91m++ + source /opt/tmp/images/__sdkStorageConstants.sh\n\e[0m\e[91m+++ ENABLE_DYNAMIC_INSTALL_KEY=ENABLE_DYNAMIC_INSTALL\n\e[0mDownloading + python version '3.8.16' from 'https://oryx-cdn.microsoft.io'...\n\e[91m+++ + SDK_STORAGE_BASE_URL_KEY_NAME=ORYX_SDK_STORAGE_BASE_URL\n\e[0m\e[91m+++ TESTING_SDK_STORAGE_URL_KEY_NAME=ORYX_TEST_SDK_STORAGE_URL\n\e[0m\e[91m+++ + PRIVATE_STAGING_STORAGE_SAS_TOKEN_KEY=ORYX_SDK_STORAGE_ACCOUNT_ACCESS_TOKEN\n\e[0m\e[91m+++ + ORYX_KEYVAULT_URI=https://oryx.vault.azure.net\n\e[0m\e[91m+++ STAGING_STORAGE_SAS_TOKEN_KEYVAULT_SECRET_NAME=ORYX-SDK-STAGING-PRIVATE-SAS-TOKEN\n\e[0mretry + 0\n\e[91m+++ PRIVATE_STAGING_SDK_STORAGE_BASE_URL=https://oryxsdksstaging.blob.core.windows.net\n\e[0m\e[91m+++ + DEV_SDK_STORAGE_BASE_URL=https://oryxsdksdev.blob.core.windows.net\n\e[0m\e[91m+++ + SANDBOX_SDK_STORAGE_BASE_URL=https://oryxsdkssandbox.blob.core.windows.net\n\e[0m\e[91m+++ + PRIVATE_SDK_STORAGE_BASE_URL=https://oryxsdksprivate.blob.core.windows.net\n\e[0m\e[91m+++ + PROD_SDK_STORAGE_BASE_URL=https://oryxsdksprod.blob.core.windows.net\n\e[0m\e[91m+++ + PROD_BACKUP_SDK_STORAGE_BASE_URL=https://oryxsdksprodbackup.blob.core.windows.net\n\e[0m\e[91m+++ + PROD_SDK_CDN_STORAGE_BASE_URL=https://oryx-cdn.microsoft.io\n+++ DEFAULT_VERSION_FILE_NAME=defaultVersion.txt\n+++ + DEFAULT_VERSION_FILE_PREFIX=defaultVersion\n\e[0m\e[91m+++ DEFAULT_VERSION_FILE_TYPE=txt\n+++ + VERSIONS_TO_BUILD_FILE_NAME=versionsToBuild.txt\n+++ CONTAINER_METADATA_URL_FORMAT='{0}/{1}?restype=container&comp=list&include=metadata&marker={2}&{3}'\n+++ + SDK_DOWNLOAD_SENTINEL_FILE_NAME=.oryx-sdkdownload-sentinel\n+++ SDK_VERSION_METADATA_NAME=Sdk_version\n\e[0m\e[91m+++ + LEGACY_SDK_VERSION_METADATA_NAME=Version\n+++ DOTNET_RUNTIME_VERSION_METADATA_NAME=Dotnet_runtime_version\n+++ + LEG" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4016' + content-range: + - bytes 63956-68051/69084 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:52 GMT + etag: + - '"0x8DB8D9814ECF0CE"' + last-modified: + - Wed, 26 Jul 2023 05:20:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '33' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:54 GMT + x-ms-range: + - bytes=68052-72147 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "ACY_DOTNET_RUNTIME_VERSION_METADATA_NAME=Runtime_version\n+++ OS_TYPE_METADATA_NAME=Os_type\n+ + PARAMS=\n+ (( 2 ))\n+ case \"$1\" in\n+ PARAMS=' python'\n+ shift\n+ (( + \ 1 ))\n+ case \"$1\" in\n+ PARAMS=' python 3.8.16'\n+ shift\n+ (( 0 ))\n+ + eval set -- ' python 3.8.16'\n++ set -- python 3.8.16\n+ PLATFORM_NAME=python\n+ + VERSION=3.8.16\n+ debianFlavor=bullseye\n+ fileName=python-3.8.16.tar.gz\n+ + sdkStorageAccountUrl=https://oryx-cdn.microsoft.io\n+ sasToken=\n+ '[' -z + https://oryx-cdn.microsoft.io ']'\n+ '[' https://oryx-cdn.microsoft.io == + https://oryxsdksstaging.blob.core.windows.net ']'\n+ '[' -z bullseye ']'\n+ + '[' bullseye == stretch ']'\n+ fileName=python-bullseye-3.8.16.tar.gz\n+ platformDir=/opt/python\n+ + '[' -z '' ']'\n+ targetDir=/opt/python/3.8.16\n+ START_TIME=0\n+ set +x\n\e[0m\e[91m + \ % Total % Received % Xferd Average Speed Time Time Time Current\n\e[0m\e[91m + \ Dload Upload Total Spent Left Speed\n\n\e[0m\e[91m + \ 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1032' + content-range: + - bytes 68052-69083/69084 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:52 GMT + etag: + - '"0x8DB8D9814ECF0CE"' + last-modified: + - Wed, 26 Jul 2023 05:20:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '33' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:55 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '69084' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:52 GMT + etag: + - '"0x8DB8D9814ECF0CE"' + last-modified: + - Wed, 26 Jul 2023 05:20:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '33' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:57 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '69349' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:55 GMT + etag: + - '"0x8DB8D9816B6ACF1"' + last-modified: + - Wed, 26 Jul 2023 05:20:55 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '34' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:57 GMT + x-ms-range: + - bytes=69084-73179 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "\e[0m\e[91m 2 71.9M 2 2064k 0 0 7561k 0 0:00:09 --:--:-- + \ 0:00:09 7533k\n\e[0m\e[91m 33 71.9M 33 24.3M 0 0 18.9M 0 + \ 0:00:03 0:00:01 0:00:02 18.9M\n\e[0m\e[91m 66 71.9M 66 48.0M 0 0 + \ 21.1M 0 0:00:03 0:00:02 0:00:01 21.1M\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '265' + content-range: + - bytes 69084-69348/69349 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:55 GMT + etag: + - '"0x8DB8D9816B6ACF1"' + last-modified: + - Wed, 26 Jul 2023 05:20:55 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '34' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:20:57 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '69349' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:55 GMT + etag: + - '"0x8DB8D9816B6ACF1"' + last-modified: + - Wed, 26 Jul 2023 05:20:55 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '34' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:00 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '69953' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:58 GMT + etag: + - '"0x8DB8D98187AF0FE"' + last-modified: + - Wed, 26 Jul 2023 05:20:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '35' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:00 GMT + x-ms-range: + - bytes=69349-73444 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "\e[0m\e[91m 90 71.9M 90 65.1M 0 0 19.8M 0 0:00:03 0:00:03 + --:--:-- 19.8M\n100 71.9M 100 71.9M 0 0 18.8M 0 0:00:03 0:00:03 + --:--:-- 18.8M\n\e[0mVerifying checksum...\npython-bullseye-3.8.16.tar.gz: + OK\n\e[91m+ set -x\n\e[0mDownloaded and verified checksum in 4 sec(s).\nExtracting...\n\e[91m+ + ELAPSED_TIME=4\n\e[0m\e[91m+ echo 'Downloaded and verified checksum in 4 sec(s).'\n\e[0m\e[91m+ + echo Extracting...\n\e[0m\e[91m+ START_TIME=4\n\e[0m\e[91m+ mkdir -p /opt/python/3.8.16\n\e[0m\e[91m+ + tar -xzf python-bullseye-3.8.16.tar.gz -C /opt/python/3.8.16\n\e[0m\e[91m+ + rm -f python-bullseye-3.8.16.tar.gz\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '604' + content-range: + - bytes 69349-69952/69953 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:58 GMT + etag: + - '"0x8DB8D98187AF0FE"' + last-modified: + - Wed, 26 Jul 2023 05:20:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '35' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:01 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '69953' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:20:58 GMT + etag: + - '"0x8DB8D98187AF0FE"' + last-modified: + - Wed, 26 Jul 2023 05:20:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '35' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:03 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '71565' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:01 GMT + etag: + - '"0x8DB8D9819BA6DD9"' + last-modified: + - Wed, 26 Jul 2023 05:21:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '36' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:03 GMT + x-ms-range: + - bytes=69953-74048 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "\e[0m\e[91m+ ELAPSED_TIME=2\n\e[0mExtracted contents in 2 sec(s).\n\e[91m+ + echo 'Extracted contents in 2 sec(s).'\n\e[0m\e[91m+ '[' python == python + ']'\n\e[0m\e[91m+ '[' -d /opt/python/3.8.16 ']'\n\e[0m\e[91m+ echo /opt/python/3.8.16/lib\n\e[0m\e[91m+ + ldconfig\n\e[0m\e[91m+ '[' '' '!=' false ']'\n\e[0m\nCreated link from 3.8 + to 3.8.16\n\e[91m+ cd /opt/python\n+ IFS=.\n+ read -ra VERSION_PARTS\n+ MAJOR_MINOR=3.8\n+ + echo\n+ echo 'Created link from 3.8 to 3.8.16'\n+ ln -sfn 3.8.16 3.8\n\e[0m\e[91m+ + '[' -d /opt/python/3.8.16 ']'\n+ echo /opt/python/3.8.16/lib\n\e[0m\e[91m+ + ldconfig\n\e[0m\e[91m+ cd /opt/python\n\e[0m\e[91m+ ln -s 3.8.16 3.8\n\e[0m\e[91m+ + ln -s 3.8.16 latest\n\e[0m\e[91m+ ln -s 3.8.16 stable\n\e[0m\e[91m+ PLATFORM_SETUP_START=50\n\e[0m\nDownloading + and extracting 'nodejs' version '16.20.1' to '/opt/nodejs/16.20.1'...\n\e[91m+ + echo\n\e[0m\e[91m+ echo 'Downloading and extracting '\\''nodejs'\\'' version + '\\''16.20.1'\\'' to '\\''/opt/nodejs/16.20.1'\\''...'\n\e[0m\e[91m+ rm -rf + /opt/nodejs/16.20.1\n\e[0m\e[91m+ mkdir -p /opt/nodejs/16.20.1\n\e[0m\e[91m+ + cd /opt/nodejs/16.20.1\n\e[0mDetected image debian flavor: bullseye.\n\e[91m+ + PLATFORM_BINARY_DOWNLOAD_START=50\n\e[0m\e[91m+ platformName=nodejs\n\e[0m\e[91m+ + export DEBIAN_FLAVOR=bullseye\n\e[0m\e[91m+ DEBIAN_FLAVOR=bullseye\n\e[0m\e[91m+ + echo 'Detected image debian flavor: bullseye.'\n\e[0m\e[91m+ '[' bullseye + == stretch ']'\n\e[0m\e[91m+ curl -D headers.txt -SL https://oryx-cdn.microsoft.io/nodejs/nodejs-bullseye-16.20.1.tar.gz + --output 16.20.1.tar.gz\n\e[0mDownloaded in 2 sec(s).\n\e[91m+ PLATFORM_BINARY_DOWNLOAD_ELAPSED_TIME=2\n+ + echo 'Downloaded in 2 sec(s).'\n+ echo Verifying checksum...\n+ headerName=x-ms-meta-checksum\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1612' + content-range: + - bytes 69953-71564/71565 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:01 GMT + etag: + - '"0x8DB8D9819BA6DD9"' + last-modified: + - Wed, 26 Jul 2023 05:21:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '36' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:03 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '71565' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:01 GMT + etag: + - '"0x8DB8D9819BA6DD9"' + last-modified: + - Wed, 26 Jul 2023 05:21:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '36' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:06 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '90501' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:04 GMT + etag: + - '"0x8DB8D981A7B1059"' + last-modified: + - Wed, 26 Jul 2023 05:21:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '38' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:06 GMT + x-ms-range: + - bytes=71565-75660 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "\e[0mVerifying checksum...\n\e[91m++ grep -i x-ms-meta-checksum:\n++ + tr -d '\\r'\n\e[0m\e[91m++ cat headers.txt\n\e[0m\e[91m+ checksumHeader='x-ms-meta-checksum: + 82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849'\n\e[0m\e[91m++ + echo x-ms-meta-checksum: 82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849\n\e[0m\e[91m++ + tr '[A-Z]' '[a-z]'\n\e[0m\e[91m+ checksumHeader='x-ms-meta-checksum: 82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849'\n\e[0m\e[91m+ + checksumValue=82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849\n\e[0m\e[91m+ + rm -f headers.txt\n\e[0m\e[91m+ echo Extracting contents...\n\e[0mExtracting + contents...\n\e[91m+ tar -xzf 16.20.1.tar.gz -C .\n\e[0mperforming sha512 + checksum for: nodejs...\n\e[91m+ '[' nodejs = golang ']'\n\e[0m\e[91m+ echo + 'performing sha512 checksum for: nodejs...'\n+ echo '82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849 + 16.20.1.tar.gz'\n\e[0m\e[91m+ sha512sum -c -\n\e[0m\e[91m+ rm -f 16.20.1.tar.gz\n\e[0m\e[91m+ + PLATFORM_SETUP_ELAPSED_TIME=4\n\e[0mDone in 4 sec(s).\n\n\e[91m+ echo 'Done + in 4 sec(s).'\n\e[0m\e[91m+ echo\n\e[0m\e[91m+ oryxImageDetectorFile=/opt/oryx/.imagetype\n\e[0m\e[91m+ + oryxOsDetectorFile=/opt/oryx/.ostype\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype + ']'\n\e[0m\e[91m+ '[' nodejs = dotnet ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype + ']'\n\e[0m\e[91m+ '[' nodejs = dotnet ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype + ']'\n\e[0m\e[91m+ '[' nodejs = nodejs ']'\n\e[0m\e[91m+ grep -q vso- /opt/oryx/.imagetype\n\e[0m\e[91m+ + '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' nodejs = php ']'\n\e[0m\e[91m+ + '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' nodejs = python ']'\n\e[0m\e[91m+ + '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' nodejs = java ']'\n\e[0m\e[91m+ + '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' nodejs = ruby ']'\n\e[0m\e[91m+ + '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.ostype ']'\n\e[0m\e[91m+ + '[' nodejs = python ']'\n\e[0m\e[91m+ echo\n\e[0m\e[91m+ cd /app\n\e[0m\e[91m+ + '[' -f /opt/oryx/benv ']'\n+ source /opt/oryx/benv nodejs=16.20.1 dynamic_install_root_dir=/opt\n++ + read benvEnvironmentVariable\n\e[0m\e[91m+++ set\n\e[0m\e[91m+++ grep -i '^dynamic_install_root_dir='\n\e[0m\e[91m++ + set -- DYNAMIC_INSTALL_ROOT_DIR=/opt nodejs=16.20.1 dynamic_install_root_dir=/opt\n\e[0m\e[91m++ + read benvEnvironmentVariable\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + grep -i '^php='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + set\n\e[0m\e[91m+++ grep -i '^composer='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + set\n\e[0m\e[91m+++ grep -i '^python='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + set\n+++ grep -i '^node='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + set\n\e[0m\e[91m+++ grep -i '^dotnet='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + set\n\e[0m\e[91m+++ grep -i '^hugo='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + set\n\e[0m\e[91m+++ grep -i '^ruby='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + grep -i '^golang='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + grep -i '^java='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + grep -i '^maven='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ unset benvEnvironmentVariable\n\e[0m\e[91m+++ + benv-getDynamicInstallRootDir DYNAMIC_INSTALL_ROOT_DIR=/opt nodejs=16.20.1 + dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ local explicitDynamicInstallRootDir=\n\e[0m\e[91m+++ + [[ DYNAMIC_INSTALL_ROOT_DIR=/opt = *\\=* ]]\n\e[0m\e[91m++++ sed 's/=.*$//'\n\e[0m\e[91m++++ + echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ local name=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++++ + sed 's/^.*=//'\n\e[0m\e[91m++++ echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ + local value=/opt\n\e[0m\e[91m+++ matchesName dynamic_install_root_dir DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m+++ + local expectedName=dynamic_install_root_dir\n+++" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 71565-75660/90501 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:04 GMT + etag: + - '"0x8DB8D981A7B1059"' + last-modified: + - Wed, 26 Jul 2023 05:21:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '38' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:06 GMT + x-ms-range: + - bytes=75661-79756 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: " local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m+++ local + result=\n\e[0m\e[91m+++ shopt -s nocasematch\n\e[0m\e[91m+++ [[ dynamic_install_root_dir + == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n+++ result=0\n\e[0m\e[91m+++ shopt -u nocasematch\n\e[0m\e[91m+++ return + 0\n\e[0m\e[91m+++ explicitDynamicInstallRootDir=/opt\n+++ shift\n\e[0m\e[91m+++ + [[ nodejs=16.20.1 = *\\=* ]]\n\e[0m\e[91m++++ echo nodejs=16.20.1\n\e[0m\e[91m++++ + sed 's/=.*$//'\n\e[0m\e[91m+++ local name=nodejs\n\e[0m\e[91m++++ sed 's/^.*=//'\n\e[0m\e[91m++++ + echo nodejs=16.20.1\n\e[0m\e[91m+++ local value=16.20.1\n\e[0m\e[91m+++ matchesName + dynamic_install_root_dir nodejs\n\e[0m\e[91m+++ local expectedName=dynamic_install_root_dir\n\e[0m\e[91m+++ + local providedName=nodejs\n\e[0m\e[91m+++ local result=\n\e[0m\e[91m+++ shopt + -s nocasematch\n\e[0m\e[91m+++ [[ dynamic_install_root_dir == \\n\\o\\d\\e\\j\\s + ]]\n\e[0m\e[91m+++ result=1\n\e[0m\e[91m+++ shopt -u nocasematch\n+++ return + 1\n\e[0m\e[91m+++ shift\n\e[0m\e[91m+++ [[ dynamic_install_root_dir=/opt = + *\\=* ]]\n\e[0m\e[91m++++ sed 's/=.*$//'\n\e[0m\e[91m++++ echo dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ + local name=dynamic_install_root_dir\n\e[0m\e[91m++++ sed 's/^.*=//'\n\e[0m\e[91m++++ + echo dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ local value=/opt\n\e[0m\e[91m+++ + matchesName dynamic_install_root_dir dynamic_install_root_dir\n\e[0m\e[91m+++ + local expectedName=dynamic_install_root_dir\n+++ local providedName=dynamic_install_root_dir\n\e[0m\e[91m+++ + local result=\n\e[0m\e[91m+++ shopt -s nocasematch\n\e[0m\e[91m+++ [[ dynamic_install_root_dir + == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n\e[0m\e[91m+++ result=0\n\e[0m\e[91m+++ shopt -u nocasematch\n+++ return + 0\n+++ explicitDynamicInstallRootDir=/opt\n\e[0m\e[91m+++ shift\n\e[0m\e[91m+++ + [[ '' = *\\=* ]]\n\e[0m\e[91m+++ '[' -z /opt ']'\n\e[0m\e[91m+++ echo /opt\n\e[0m\e[91m++ + _benvDynamicInstallRootDir=/opt\n\e[0m\e[91m++ [[ DYNAMIC_INSTALL_ROOT_DIR=/opt + = *\\=* ]]\n\e[0m\e[91m++ benv-resolve DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ + sed 's/=.*$//'\n\e[0m\e[91m+++ echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m++ + local name=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m+++ echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ + sed 's/^.*=//'\n\e[0m\e[91m++ local value=/opt\n\e[0m\e[91m++ matchesName + nodejs DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local expectedName=nodejs\n\e[0m\e[91m++ + local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ + shopt -s nocasematch\n\e[0m\e[91m++ [[ nodejs == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ + return 1\n\e[0m\e[91m++ matchesName node DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ + local expectedName=node\n\e[0m\e[91m++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ node == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ + return 1\n\e[0m\e[91m++ matchesName node_version DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ + local expectedName=node_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ node_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=python\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ python == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=python_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ python_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName hugo + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=hugo\n\e[0m\e[91m++ local + providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ + shopt -s nocasematch\n\e[0m\e[91m++ [[ hugo == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ + return 1\n\e[0m\e[91m++ matchesName hugo_" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 75661-79756/94793 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:04 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:06 GMT + x-ms-range: + - bytes=79757-83852 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "version DYNAMIC_INSTALL_ROOT_DIR\r\n\e[0m\e[91m++ local expectedName=hugo_version\n\e[0m\e[91m++ + local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ + shopt -s nocasematch\n\e[0m\e[91m++ [[ hugo_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ + return 1\n\e[0m\e[91m++ matchesName php DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ + local expectedName=php\n\e[0m\e[91m++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ + local result=\n++ shopt -s nocasematch\n\e[0m\e[91m++ [[ php == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ + return 1\n\e[0m\e[91m++ matchesName php_version DYNAMIC_INSTALL_ROOT_DIR\n++ + local expectedName=php_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ php_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=composer\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ composer == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=composer_version\n++ local + providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ local result=\n++ shopt -s nocasematch\n++ + [[ composer_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=dotnet\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ dotnet == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ + return 1\n\e[0m\e[91m++ matchesName dotnet_version DYNAMIC_INSTALL_ROOT_DIR\n++ + local expectedName=dotnet_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ dotnet_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName golang + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=golang\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ golang == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName golang_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=golang_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ golang_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=ruby\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ ruby == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=ruby_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ ruby_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=java\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ java == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=java_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ java_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=maven\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ + local result=\n++ shop" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 79757-83852/94793 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:04 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:06 GMT + x-ms-range: + - bytes=83853-87948 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "t -s nocasematch\n++ [[ maven == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=maven_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ maven_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ eval export 'DYNAMIC_INSTALL_ROOT_DIR='\\''/opt'\\'''\n+++ + export DYNAMIC_INSTALL_ROOT_DIR=/opt\n+++ DYNAMIC_INSTALL_ROOT_DIR=/opt\n++ + shift\n++ [[ nodejs=16.20.1 = *\\=* ]]\n++ benv-resolve nodejs=16.20.1\n\e[0m\e[91m+++ + echo nodejs=16.20.1\n\e[0m\e[91m+++ sed 's/=.*$//'\n\e[0m\e[91m++ local name=nodejs\n\e[0m\e[91m+++ + echo nodejs=16.20.1\n\e[0m\e[91m+++ sed 's/^.*=//'\n\e[0m\e[91m++ local value=16.20.1\n\e[0m\e[91m++ + matchesName nodejs nodejs\n\e[0m\e[91m++ local expectedName=nodejs\n\e[0m\e[91m++ + local providedName=nodejs\n++ local result=\n++ shopt -s nocasematch\n++ [[ + nodejs == \\n\\o\\d\\e\\j\\s ]]\n++ result=0\n++ shopt -u nocasematch\n++ + return 0\n++ '[' 1 '!=' / ']'\n\e[0m\e[91m+++ benv-getPlatformDir nodejs 16.20.1 + /opt\n\e[0m\e[91m+++ local platformDirName=nodejs\n\e[0m\e[91m+++ local userSuppliedVersion=16.20.1\n\e[0m\e[91m+++ + local dynamicInstallRootDir=/opt\n\e[0m\e[91m+++ local builtInInstallDir=/opt/nodejs\n\e[0m\e[91m+++ + local dynamicInstallDir=/opt/nodejs\n\e[0m\e[91m+++ '[' -d /opt/nodejs/16.20.1 + ']'\n\e[0m\e[91m+++ echo /opt/nodejs/16.20.1\n\e[0m\e[91m++ platformDir=/opt/nodejs/16.20.1\n\e[0m\e[91m++ + '[' /opt/nodejs/16.20.1 == NotFound ']'\n\e[0m\e[91m++ local DIR=/opt/nodejs/16.20.1/bin\n\e[0m\e[91m++ + updatePath /opt/nodejs/16.20.1/bin\n\e[0m\e[91m++ '[' '' == true ']'\n++ export + PATH=/opt/nodejs/16.20.1/bin:/usr/local/go/bin:/opt/python/latest/bin:/opt/oryx:/opt/yarn/stable/bin:/opt/hugo/lts:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n++ + PATH=/opt/nodejs/16.20.1/bin:/usr/local/go/bin:/opt/python/latest/bin:/opt/oryx:/opt/yarn/stable/bin:/opt/hugo/lts:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n++ + export node=/opt/nodejs/16.20.1/bin/node\n++ node=/opt/nodejs/16.20.1/bin/node\n++ + export npm=/opt/nodejs/16.20.1/bin/npm\n++ npm=/opt/nodejs/16.20.1/bin/npm\n++ + '[' -e /opt/nodejs/16.20.1/bin/npx ']'\n++ export npx=/opt/nodejs/16.20.1/bin/npx\n++ + npx=/opt/nodejs/16.20.1/bin/npx\n++ return 0\n++ shift\n++ [[ dynamic_install_root_dir=/opt + = *\\=* ]]\n++ benv-resolve dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ + sed 's/=.*$//'\n\e[0m\e[91m+++ echo dynamic_install_root_dir=/opt\n\e[0m\e[91m++ + local name=dynamic_install_root_dir\n\e[0m\e[91m+++ echo dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ + sed 's/^.*=//'\n\e[0m\e[91m++ local value=/opt\n++ matchesName nodejs dynamic_install_root_dir\n++ + local expectedName=nodejs\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ nodejs == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName node + dynamic_install_root_dir\n++ local expectedName=node\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ node == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName node_version + dynamic_install_root_dir\n++ local expectedName=node_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ node_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python + dynamic_install_root_dir\n++ local expectedName=python\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n\e[0m\e[91m++ shopt -s nocasematch\n++ [[ python == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python_version + dynamic_install_root_dir\n++ local expectedName=python_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ python_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ mat" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 83853-87948/94793 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:04 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:06 GMT + x-ms-range: + - bytes=87949-92044 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "chesName hugo dynamic_install_root_dir\n++ local expectedName=hugo\n++ + local providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s + nocasematch\n++ [[ hugo == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName hugo_version + dynamic_install_root_dir\n++ local expectedName=hugo_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ hugo_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName php + dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=php\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n\e[0m\e[91m++ shopt -s nocasematch\n\e[0m\e[91m++ [[ php == + \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r ]]\n\e[0m\e[91m++ + result=1\n\e[0m\e[91m++ shopt -u nocasematch\n++ return 1\n++ matchesName + php_version dynamic_install_root_dir\n++ local expectedName=php_version\n++ + local providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s + nocasematch\n++ [[ php_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer + dynamic_install_root_dir\n++ local expectedName=composer\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ composer == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer_version + dynamic_install_root_dir\n++ local expectedName=composer_version\n\e[0m\e[91m++ + local providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s + nocasematch\n++ [[ composer_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet + dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=dotnet\n++ local + providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s nocasematch\n++ + [[ dotnet == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet_version + dynamic_install_root_dir\n++ local expectedName=dotnet_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ dotnet_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n\e[0m\e[91m++ matchesName + golang dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=golang\n\e[0m\e[91m++ + local providedName=dynamic_install_root_dir\n\e[0m\e[91m++ local result=\r\n\e[0m\e[91m++ + shopt -s nocasematch\n\e[0m\e[91m++ [[ golang == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n\e[0m\e[91m++ matchesName + golang_version dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=golang_version\n++ + local providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s + nocasematch\n++ [[ golang_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby + dynamic_install_root_dir\n++ local expectedName=ruby\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ ruby == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby_version + dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=ruby_version\n\e[0m\e[91m++ + local providedName=dynamic_install_root_dir\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ + shopt -s nocasematch\n++ [[ ruby_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n\e[0m\e[91m++ matchesName + java dynamic_install_root_dir\n++ local expectedName=java\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ java == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java_version + dynamic_install_root_dir\n++ local expectedName=java_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasemat" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 87949-92044/94793 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:04 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:06 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '94793' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:04 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:07 GMT + x-ms-range: + - bytes=92045-96140 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "ch\n++ [[ java_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven + dynamic_install_root_dir\n++ local expectedName=maven\n\e[0m\e[91m++ local + providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s nocasematch\n++ + [[ maven == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven_version + dynamic_install_root_dir\n++ local expectedName=maven_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ maven_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ eval export 'dynamic_install_root_dir='\\''/opt'\\'''\n\e[0m\e[91m+++ + export dynamic_install_root_dir=/opt\n+++ dynamic_install_root_dir=/opt\n++ + shift\n++ [[ '' = *\\=* ]]\n++ '[' /tmp/BuildScriptGenerator/9f187df6fb814c7eadd8e0df0309766e/build.sh + '!=' /opt/oryx/benv ']'\n++ unset -f benv-resolve benv-versions\n++ '[' 0 + -gt 0 ']'\n+ export SOURCE_DIR\n+ export DESTINATION_DIR\n+ mkdir -p /output\n\e[0mRemoving + existing manifest file\n\e[91m+ cd /app\n+ COMMAND_MANIFEST_FILE=/app/oryx-build-commands.txt\n+ + echo 'Removing existing manifest file'\n+ rm -f /app/oryx-build-commands.txt\n\e[0m\e[91m+ + echo 'Creating directory for command manifest file if it does not exist'\n\e[0mCreating + directory for command manifest file if it does not exist\n\e[91m++ dirname + /app/oryx-build-commands.txt\n\e[0m\e[91m+ mkdir -p /app\n\e[0m\e[91m+ echo + 'Creating a manifest file...'\n\e[0mCreating a manifest file...\nNode Build + Command Manifest file created.\n\nUsing Node version:\n\e[91m+ echo 'PlatformWithVersion=Node.js + 16.20.1'\n\e[0m\e[91m+ echo 'Node Build Command Manifest file created.'\n\e[0m\e[91m+ + doc='https://docs.microsoft.com/en-us/azure/app-service/configure-language-nodejs?pivots=platform-linux#troubleshooting'\n\e[0m\e[91m+ + echo\n\e[0m\e[91m+ echo 'Using Node version:'\n\e[0m\e[91m+ node --version\n\e[0mv16.20.1\n\e[91m+ + echo\n\e[0m\nUsing Npm version:\n\e[91m+ echo BuildCommands=\n\e[0m\e[91m+ + echo Using Npm version:\n\e[0m\e[91m+ npm --version\n\e[0m8.19.4\n\e[91m+ + zippedModulesFileName=\n\e[0m\e[91m+ allModulesDirName=.oryx_all_node_modules\n\e[0m\e[91m+ + prodModulesDirName=.oryx_prod_node_modules\n\e[0m\e[91m+ PruneDevDependencies=false\n\e[0m\e[91m+ + HasProdDependencies=true\n\e[0m\e[91m+ HasDevDependencies=false\n\e[0m\e[91m+ + packageDirName=\n\e[0m\e[91m+ '[' -d .oryx_all_node_modules ']'\n\e[0m\e[91m+ + '[' false == true ']'\n\e[0m\e[91m++ whoami\n\e[0m\e[91m+ [[ root == \\r\\o\\o\\t + ]]\n\e[0m\e[91m+ chown -R root:root /app\n\e[0m\e[91m+ cd /app\n\e[0m\nRunning + 'npm install'...\n\n\e[91m+ echo\n\e[0m\e[91m+ echo 'Running '\\''npm install'\\''...'\n\e[0m\e[91m+ + echo\n\e[0m\e[91m+ printf %s ', npm install'\n\e[0m\e[91m+ npm install\n\e[0m\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2748' + content-range: + - bytes 92045-94792/94793 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:04 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:07 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '94793' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:04 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:09 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '94793' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:07 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:12 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '94793' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:09 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:16 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '94793' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:13 GMT + etag: + - '"0x8DB8D981C06F798"' + last-modified: + - Wed, 26 Jul 2023 05:21:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:19 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '97229' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:17 GMT + etag: + - '"0x8DB8D982352D2D2"' + last-modified: + - Wed, 26 Jul 2023 05:21:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '40' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:19 GMT + x-ms-range: + - bytes=94793-98888 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "added 54 packages, and audited 55 packages in 2s\n\n4 vulnerabilities + (3 high, 1 critical)\n\e[91mnpm notice \n\e[0m\nTo address all issues (including + breaking changes), run:\n npm audit fix --force\n\nRun `npm audit` for details.\n\e[91mnpm + notice New major version of npm available! 8.19.4 -> 9.8.1\nnpm notice Changelog: + \nnpm notice Run `npm install + -g npm@9.8.1` to update!\nnpm notice \n\e[0m\e[91m++ cat /opt/oryx/.imagetype\n\e[0m\e[91m+ + ReadImageType=cli\n+ '[' cli = vso-focal ']'\n+ '[' cli = vso-debian-bullseye + ']'\n\e[0m\e[91m+ rm /app/oryx-build-commands.txt\n\e[0mPreparing output...\n\e[91m+ + cd /app\n\e[0m\nCopying files to destination directory '/output'...\n\e[91m+ + '[' false == true ']'\n+ '[' /app '!=' /output ']'\n+ echo 'Preparing output...'\n+ + cd /app\n+ echo\n+ echo 'Copying files to destination directory '\\''/output'\\''...'\n+ + START_TIME=56\n+ excludedDirectories=\n+ excludedDirectories+=' --exclude + .oryx_all_node_modules'\n+ excludedDirectories+=' --exclude .oryx_prod_node_modules'\n+ + excludedDirectories+=' --exclude .git'\n+ rsync -rcE --links --exclude .oryx_all_node_modules + --exclude .oryx_prod_node_modules --exclude .git . /output\n\e[0m\e[91m+ ELAPSED_TIME=0\n\e[0m\e[91m+ + echo 'Done in 0 sec(s).'\n\e[0m\e[91m+ MANIFEST_FILE=oryx-manifest.toml\n\e[0m\e[91m+ + MANIFEST_DIR=\n\e[0mDone in 0 sec(s).\n\e[91m+ '[' -z '' ']'\n\e[0m\e[91m+ + MANIFEST_DIR=/output\n\e[0m\e[91m+ mkdir -p /output\n\e[0m\e[91m+ echo\n\e[0m\nRemoving + existing manifest file\nCreating a manifest file...\nManifest file created.\nCopying + .ostype to manifest output directory.\n\e[91m+ echo 'Removing existing manifest + file'\n\e[0m\e[91m+ rm -f /output/oryx-manifest.toml\n\e[0m\e[91m+ echo 'Creating + a manifest file...'\n\e[0m\e[91m+ echo 'NodeVersion=\"16.20.1\"'\n\e[0m\e[91m+ + echo 'nodeBuildCommandsFile=\"/app/oryx-build-commands.txt\"'\n\e[0m\e[91m+ + echo 'Frameworks=\"Express\"'\n\e[0m\e[91m+ echo 'OperationId=\"8d88298df8d0bdd6\"'\n\e[0m\nDone + in 56 sec(s).\n\e[91m+ echo 'SourceDirectoryInBuildContainer=\"/app\"'\n\e[0m\e[91m+ + echo 'PlatformName=\"nodejs\"'\n+ echo 'CompressDestinationDir=\"false\"'\n+ + echo 'Manifest file created.'\n+ OS_TYPE_SOURCE_DIR=/opt/oryx/.ostype\n+ '[' + -f /opt/oryx/.ostype ']'\n+ echo 'Copying .ostype to manifest output directory.'\n+ + cp /opt/oryx/.ostype /output/.ostype\n+ TOTAL_EXECUTION_ELAPSED_TIME=56\n+ + echo\n+ echo 'Done in 56 sec(s).'\n\e[0mRemoving intermediate container 26c493c8f0d4\n + ---> 8a1c917fcff8\nStep 6/10 : FROM mcr.microsoft.com/oryx/${RUNTIME}\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2436' + content-range: + - bytes 94793-97228/97229 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:17 GMT + etag: + - '"0x8DB8D982352D2D2"' + last-modified: + - Wed, 26 Jul 2023 05:21:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '40' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:19 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '97229' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:17 GMT + etag: + - '"0x8DB8D982352D2D2"' + last-modified: + - Wed, 26 Jul 2023 05:21:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '40' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:21 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99067' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:19 GMT + etag: + - '"0x8DB8D98248A9031"' + last-modified: + - Wed, 26 Jul 2023 05:21:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '41' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:21 GMT + x-ms-range: + - bytes=97229-101324 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "18: Pulling from oryx/node\n34df401c391c: Already exists\n6fdd0e5b72cc: + Already exists\n3e667686bcfb: Pulling fs layer\n08fee8e7f70d: Pulling fs layer\naa649acedacd: + Pulling fs layer\n7c35038c535d: Pulling fs layer\nb34377fff786: Pulling fs + layer\ned5b52acd5ef: Pulling fs layer\nba9f3006808a: Pulling fs layer\ne154da39ba4c: + Pulling fs layer\nfadd7ccb0a4b: Pulling fs layer\nd9793d6f4f08: Pulling fs + layer\n6720aab929c9: Pulling fs layer\n32deea1a7492: Pulling fs layer\n1d9087acb1e1: + Pulling fs layer\n1a6da6a96e94: Pulling fs layer\ne7ee06712709: Pulling fs + layer\n13a1a3ecc9ed: Pulling fs layer\n7c35038c535d: Waiting\nb34377fff786: + Waiting\ned5b52acd5ef: Waiting\nba9f3006808a: Waiting\ne154da39ba4c: Waiting\nfadd7ccb0a4b: + Waiting\nd9793d6f4f08: Waiting\n6720aab929c9: Waiting\n32deea1a7492: Waiting\n1d9087acb1e1: + Waiting\n1a6da6a96e94: Waiting\ne7ee06712709: Waiting\n13a1a3ecc9ed: Waiting\naa649acedacd: + Verifying Checksum\naa649acedacd: Download complete\n3e667686bcfb: Verifying + Checksum\n3e667686bcfb: Download complete\n7c35038c535d: Verifying Checksum\n7c35038c535d: + Download complete\nb34377fff786: Download complete\n3e667686bcfb: Pull complete\nba9f3006808a: + Download complete\ne154da39ba4c: Download complete\ned5b52acd5ef: Verifying + Checksum\ned5b52acd5ef: Download complete\nfadd7ccb0a4b: Verifying Checksum\nfadd7ccb0a4b: + Download complete\n6720aab929c9: Verifying Checksum\n6720aab929c9: Download + complete\n32deea1a7492: Verifying Checksum\n32deea1a7492: Download complete\n1d9087acb1e1: + Verifying Checksum\n1d9087acb1e1: Download complete\n08fee8e7f70d: Verifying + Checksum\n08fee8e7f70d: Download complete\n08fee8e7f70d: Pull complete\nd9793d6f4f08: + Verifying Checksum\nd9793d6f4f08: Download complete\naa649acedacd: Pull complete\n7c35038c535d: + Pull complete\nb34377fff786: Pull complete\ned5b52acd5ef: Pull complete\nba9f3006808a: + Pull complete\ne154da39ba4c: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1838' + content-range: + - bytes 97229-99066/99067 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:19 GMT + etag: + - '"0x8DB8D98248A9031"' + last-modified: + - Wed, 26 Jul 2023 05:21:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '41' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:22 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99067' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:19 GMT + etag: + - '"0x8DB8D98248A9031"' + last-modified: + - Wed, 26 Jul 2023 05:21:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '41' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:24 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99124' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:22 GMT + etag: + - '"0x8DB8D98263B3B41"' + last-modified: + - Wed, 26 Jul 2023 05:21:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '42' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:24 GMT + x-ms-range: + - bytes=99067-103162 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "fadd7ccb0a4b: Pull complete\nd9793d6f4f08: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '57' + content-range: + - bytes 99067-99123/99124 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:22 GMT + etag: + - '"0x8DB8D98263B3B41"' + last-modified: + - Wed, 26 Jul 2023 05:21:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '42' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:24 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99124' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:22 GMT + etag: + - '"0x8DB8D98263B3B41"' + last-modified: + - Wed, 26 Jul 2023 05:21:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '42' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:27 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99376' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:25 GMT + etag: + - '"0x8DB8D982796D300"' + last-modified: + - Wed, 26 Jul 2023 05:21:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '43' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:27 GMT + x-ms-range: + - bytes=99124-103219 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "6720aab929c9: Pull complete\ne7ee06712709: Verifying Checksum\ne7ee06712709: + Download complete\n13a1a3ecc9ed: Verifying Checksum\n13a1a3ecc9ed: Download + complete\n1a6da6a96e94: Verifying Checksum\n1a6da6a96e94: Download complete\n32deea1a7492: + Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '252' + content-range: + - bytes 99124-99375/99376 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:25 GMT + etag: + - '"0x8DB8D982796D300"' + last-modified: + - Wed, 26 Jul 2023 05:21:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '43' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:27 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99376' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:25 GMT + etag: + - '"0x8DB8D982796D300"' + last-modified: + - Wed, 26 Jul 2023 05:21:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '43' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:30 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99882' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:28 GMT + etag: + - '"0x8DB8D9829058F1E"' + last-modified: + - Wed, 26 Jul 2023 05:21:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '44' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:30 GMT + x-ms-range: + - bytes=99376-103471 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "1d9087acb1e1: Pull complete\n1a6da6a96e94: Pull complete\ne7ee06712709: + Pull complete\n13a1a3ecc9ed: Pull complete\nDigest: sha256:7fee6a0b0d209e9a6b9846d86e1ded3fcd5815db5fe55c6e52ed91f2eed153d2\nStatus: + Downloaded newer image for mcr.microsoft.com/oryx/node:18\n ---> e1a67efca8d5\nStep + 7/10 : WORKDIR /app\n ---> Running in 762dd75c1d50\nRemoving intermediate + container 762dd75c1d50\n ---> a679065cd08e\nStep 8/10 : COPY --from=build + /output .\n ---> 928ebfe97bca\nStep 9/10 : RUN oryx create-script -bindPort + 8080\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '506' + content-range: + - bytes 99376-99881/99882 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:28 GMT + etag: + - '"0x8DB8D9829058F1E"' + last-modified: + - Wed, 26 Jul 2023 05:21:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '44' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:30 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99882' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:28 GMT + etag: + - '"0x8DB8D9829058F1E"' + last-modified: + - Wed, 26 Jul 2023 05:21:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '44' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:32 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '100342' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:30 GMT + etag: + - '"0x8DB8D982A7E9FE6"' + last-modified: + - Wed, 26 Jul 2023 05:21:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '45' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:32 GMT + x-ms-range: + - bytes=99882-103977 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: " ---> Running in f20ce0266ad6\nFound build manifest file at '/app/oryx-manifest.toml'. + Deserializing it...\nBuild Operation ID: 8d88298df8d0bdd6\nEnvironment Variables + for Application Insight's IPA Codeless Configuration exists..\nWriting output + script to 'run.sh'\nRemoving intermediate container f20ce0266ad6\n ---> 5d1db9dbbeb9\nStep + 10/10 : ENTRYPOINT [\"/app/run.sh\"]\n ---> Running in 169a4075f86b\nRemoving + intermediate container 169a4075f86b\n ---> a234a53af800\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '460' + content-range: + - bytes 99882-100341/100342 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:30 GMT + etag: + - '"0x8DB8D982A7E9FE6"' + last-modified: + - Wed, 26 Jul 2023 05:21:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '45' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:32 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '100342' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:30 GMT + etag: + - '"0x8DB8D982A7E9FE6"' + last-modified: + - Wed, 26 Jul 2023 05:21:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '45' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:35 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101890' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:33 GMT + etag: + - '"0x8DB8D982BD55B25"' + last-modified: + - Wed, 26 Jul 2023 05:21:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '46' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:35 GMT + x-ms-range: + - bytes=100342-104437 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "Successfully built a234a53af800\nSuccessfully tagged containerapp000004.azurecr.io/containerapp000003:20230725221922064162\n2023/07/26 + 05:21:29 Successfully executed container: acb_step_1\n2023/07/26 05:21:29 + Executing step ID: acb_step_2. Timeout(sec): 1800, Working directory: '', + Network: 'acb_default_network'\n2023/07/26 05:21:29 Pushing image: containerapp000004.azurecr.io/containerapp000003:20230725221922064162, + attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/containerapp000003]\n63e9b65e94b8: + Preparing\n47ab87c808c7: Preparing\nae16e09a226e: Preparing\nbe531adc4648: + Preparing\n9fb21ae5905f: Preparing\n9470ed8f29bd: Preparing\n07de6e17726e: + Preparing\nc375a178c1dc: Preparing\n00ca1a725dca: Preparing\nfb9f97f45be9: + Preparing\n75a70e7e603e: Preparing\nfaf30a27d538: Preparing\n4898cf716b40: + Preparing\ne16a8163ca1d: Preparing\nafe87d16b16f: Preparing\n7241e0193a24: + Preparing\nc2963cac91e6: Preparing\n438f35b71861: Preparing\nd3ca9c4508e6: + Preparing\n42369e26e6d6: Preparing\n3dec696a3faa: Preparing\n9470ed8f29bd: + Waiting\n07de6e17726e: Waiting\nc375a178c1dc: Waiting\n00ca1a725dca: Waiting\nfb9f97f45be9: + Waiting\n75a70e7e603e: Waiting\nfaf30a27d538: Waiting\n4898cf716b40: Waiting\ne16a8163ca1d: + Waiting\nafe87d16b16f: Waiting\n7241e0193a24: Waiting\nc2963cac91e6: Waiting\n438f35b71861: + Waiting\nd3ca9c4508e6: Waiting\n42369e26e6d6: Waiting\n3dec696a3faa: Waiting\nae16e09a226e: + Pushed\n63e9b65e94b8: Pushed\n47ab87c808c7: Pushed\n9fb21ae5905f: Pushed\nbe531adc4648: + Pushed\n07de6e17726e: Pushed\n9470ed8f29bd: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1512' + content-range: + - bytes 100342-101889/101890 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:33 GMT + etag: + - '"0x8DB8D982BD55B25"' + last-modified: + - Wed, 26 Jul 2023 05:21:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '46' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:35 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101890' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:33 GMT + etag: + - '"0x8DB8D982BD55B25"' + last-modified: + - Wed, 26 Jul 2023 05:21:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '46' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:37 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101890' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:35 GMT + etag: + - '"0x8DB8D982BD55B25"' + last-modified: + - Wed, 26 Jul 2023 05:21:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '46' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:40 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101954' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:38 GMT + etag: + - '"0x8DB8D982F6B8F74"' + last-modified: + - Wed, 26 Jul 2023 05:21:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '47' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:40 GMT + x-ms-range: + - bytes=101890-105985 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "75a70e7e603e: Pushed\nfaf30a27d538: Pushed\n00ca1a725dca: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '64' + content-range: + - bytes 101890-101953/101954 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:38 GMT + etag: + - '"0x8DB8D982F6B8F74"' + last-modified: + - Wed, 26 Jul 2023 05:21:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '47' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:40 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101954' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:38 GMT + etag: + - '"0x8DB8D982F6B8F74"' + last-modified: + - Wed, 26 Jul 2023 05:21:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '47' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:43 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102102' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:41 GMT + etag: + - '"0x8DB8D9830DC1E44"' + last-modified: + - Wed, 26 Jul 2023 05:21:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '48' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:43 GMT + x-ms-range: + - bytes=101954-106049 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "c375a178c1dc: Pushed\n4898cf716b40: Pushed\ne16a8163ca1d: Pushed\n438f35b71861: + Pushed\nfb9f97f45be9: Pushed\nd3ca9c4508e6: Pushed\nafe87d16b16f: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '148' + content-range: + - bytes 101954-102101/102102 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:41 GMT + etag: + - '"0x8DB8D9830DC1E44"' + last-modified: + - Wed, 26 Jul 2023 05:21:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '48' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:44 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102102' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:41 GMT + etag: + - '"0x8DB8D9830DC1E44"' + last-modified: + - Wed, 26 Jul 2023 05:21:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '48' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:46 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102102' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:43 GMT + etag: + - '"0x8DB8D9830DC1E44"' + last-modified: + - Wed, 26 Jul 2023 05:21:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '48' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:49 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102187' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:46 GMT + etag: + - '"0x8DB8D983413FAEF"' + last-modified: + - Wed, 26 Jul 2023 05:21:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '49' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:49 GMT + x-ms-range: + - bytes=102102-106197 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "7241e0193a24: Pushed\nc2963cac91e6: Pushed\n42369e26e6d6: Pushed\n3dec696a3faa: + Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '85' + content-range: + - bytes 102102-102186/102187 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:46 GMT + etag: + - '"0x8DB8D983413FAEF"' + last-modified: + - Wed, 26 Jul 2023 05:21:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '49' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:49 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102187' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:46 GMT + etag: + - '"0x8DB8D983413FAEF"' + last-modified: + - Wed, 26 Jul 2023 05:21:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '49' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:52 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '103586' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:49 GMT + etag: + - '"0x8DB8D9835DF89C4"' + last-modified: + - Wed, 26 Jul 2023 05:21:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '51' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:52 GMT + x-ms-range: + - bytes=102187-106282 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: "20230725221922064162: digest: sha256:c9a619a0133d8103fc047d2e681e556cc19c39f65cd8a8bc865f898fbf352108 + size: 4716\n2023/07/26 05:21:46 Successfully pushed image: containerapp000004.azurecr.io/containerapp000003:20230725221922064162\n2023/07/26 + 05:21:46 Step ID: acb_step_0 marked as successful (elapsed time in seconds: + 10.809881)\n2023/07/26 05:21:46 Step ID: acb_step_1 marked as successful (elapsed + time in seconds: 92.169552)\n2023/07/26 05:21:46 Populating digests for step + ID: acb_step_1...\n2023/07/26 05:21:47 Successfully populated digests for + step ID: acb_step_1\n2023/07/26 05:21:47 Step ID: acb_step_2 marked as successful + (elapsed time in seconds: 16.919563)\n2023/07/26 05:21:47 The following dependencies + were found:\n2023/07/26 05:21:47 \n- image:\n registry: containerapp000004.azurecr.io\n + \ repository: containerapp000003\n tag: \"20230725221922064162\"\n digest: + sha256:c9a619a0133d8103fc047d2e681e556cc19c39f65cd8a8bc865f898fbf352108\n + \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: oryx/node\n + \ tag: \"18\"\n digest: sha256:7fee6a0b0d209e9a6b9846d86e1ded3fcd5815db5fe55c6e52ed91f2eed153d2\n + \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: + oryx/cli\n tag: debian-bullseye-stable\n digest: sha256:9da0586bddf951653dbca665361c8be7bebfeff49d55b66795cf7ca613b8d8ba\n + \ git: {}\n\r\nRun ID: ca1 was successful after 2m5s\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1375' + content-range: + - bytes 102187-103585/103586 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:49 GMT + etag: + - '"0x8DB8D9835DF89C4"' + last-modified: + - Wed, 26 Jul 2023 05:21:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '51' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 05:21:52 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '103586' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:50 GMT + etag: + - '"0x8DB8D9835DF89C4"' + last-modified: + - Wed, 26 Jul 2023 05:21:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '51' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 05:19:43 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", + "value": "U3lgRQcQqyXe7nEaMgmlyO7TY0wpgqbpgHiNAsVqOb+ACRCuEYve"}], "activeRevisionsMode": + "single", "ingress": {"fqdn": null, "external": true, "targetPort": 8080, "transport": + "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", + "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], + "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "containerapp000004.azurecr.io/containerapp000003:20230725221922064162", "name": + "containerapp000003", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1227' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:21:51.1465116Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:21:51.1465116Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["51.124.56.215"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.politesmoke-22daee02.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221922064162","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '2405' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '698' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db","name":"d0b1d5ee-85b4-40d9-a87b-e6f997e054db","status":"InProgress","startTime":"2023-07-26T05:21:52.0310909"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0526F7107FFB4E0A830240154F0A10EF Ref B: CO6AA3150220011 Ref C: 2023-07-26T05:21:54Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db","name":"d0b1d5ee-85b4-40d9-a87b-e6f997e054db","status":"InProgress","startTime":"2023-07-26T05:21:52.0310909"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:21:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: C3CE168263AE43B3A93461623B804A1B Ref B: CO6AA3150218031 Ref C: 2023-07-26T05:21:57Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db","name":"d0b1d5ee-85b4-40d9-a87b-e6f997e054db","status":"Succeeded","startTime":"2023-07-26T05:21:52.0310909"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:22:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 47FB1755E16146FC84AB0A0DEF2421BD Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:22:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:21:51.1465116","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:21:51.1465116"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["51.124.56.215"],"latestRevisionName":"containerapp000003--wpzwaxs","latestReadyRevisionName":"containerapp000003--wpzwaxs","latestRevisionFqdn":"containerapp000003--wpzwaxs.politesmoke-22daee02.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.politesmoke-22daee02.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221922064162","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2537' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:22:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0D02C0EB89EA4EC9B70ED7E8E219A5F2 Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:22:01Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:22:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: AB716172063445FDAAA84979E44F83F5 Ref B: CO6AA3150217027 Ref C: 2023-07-26T05:22:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:21:51.1465116","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:21:51.1465116"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["51.124.56.215"],"latestRevisionName":"containerapp000003--wpzwaxs","latestReadyRevisionName":"containerapp000003--wpzwaxs","latestRevisionFqdn":"containerapp000003--wpzwaxs.politesmoke-22daee02.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.politesmoke-22daee02.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221922064162","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2537' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:22:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 4102B7DD1CC74A5A83E0BC0DC3DE709F Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:22:02Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml index 2fe32a42c79..206412cc4c3 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml @@ -111,17 +111,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:05 GMT + - Wed, 26 Jul 2023 05:18:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C380F8D5A9AE4B0B8A0E35693CA00161 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -237,17 +239,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:05 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 18475091848B482BBF1FA075DFEEBD35 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -363,17 +367,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:05 GMT + - Wed, 26 Jul 2023 05:18:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D0055AF10B7E4A81AAA46AA294BB9230 Ref B: CO6AA3150220051 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -484,24 +490,24 @@ interactions: headers: cache-control: - no-cache - connection: - - close content-length: - '11739' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 70C8B5EE37A3413EB0D97FFED6735AFA Ref B: CO6AA3150219031 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -647,17 +653,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BA6BFA25D92045A1A62827910E8FE459 Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -803,17 +811,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:06 GMT + - Wed, 26 Jul 2023 05:18:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 72249BCFDC0B4F7EA1D611D21A832FF9 Ref B: CO6AA3150219051 Ref C: 2023-07-26T05:18:13Z' status: code: 200 message: OK @@ -838,10 +848,10 @@ interactions: User-Agent: - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p?api-version=2021-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.1810841Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-09T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.1810841Z","modifiedDate":"2023-07-08T07:13:10.1810841Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p","name":"workspace-clitestrgn5isfsnaihp2s342ghm2p","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.8696121Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.8696121Z","modifiedDate":"2023-07-26T05:18:14.8696121Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp","name":"workspace-clitestrgvv6nyarykwraocx2cfvnp","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -854,21 +864,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:10 GMT + - Wed, 26 Jul 2023 05:18:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p?api-version=2021-12-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp?api-version=2021-12-01-preview pragma: - no-cache request-context: - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: 3153BEF638FD47559857DC09863204B1 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:13Z' x-powered-by: - ASP.NET status: @@ -890,10 +904,10 @@ interactions: User-Agent: - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p?api-version=2021-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-08T07:13:10.1810841Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-09T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-08T07:13:10.1810841Z","modifiedDate":"2023-07-08T07:13:10.1810841Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p","name":"workspace-clitestrgn5isfsnaihp2s342ghm2p","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.8696121Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.8696121Z","modifiedDate":"2023-07-26T05:18:14.8696121Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp","name":"workspace-clitestrgvv6nyarykwraocx2cfvnp","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -906,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:11 GMT + - Wed, 26 Jul 2023 05:18:15 GMT expires: - '-1' pragma: @@ -915,12 +929,12 @@ interactions: - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 168F3D37200B490DB4F3F30ECC06457E Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:15Z' x-powered-by: - ASP.NET status: @@ -944,10 +958,10 @@ interactions: User-Agent: - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn5isfsnaihp2s342ghm2p/sharedKeys?api-version=2020-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp/sharedKeys?api-version=2020-08-01 response: body: - string: '{"primarySharedKey":"ViWPHfIFJk1w09YknVEMzrhGYK9yT1suNXQ9Dqxhn6hd6CkKK3AGSrDTYTCiVD1Tj5xuvDQSzUoTuGiSu1iIqA==","secondarySharedKey":"hPWiIljUtBfxNc6PLGZ/GxNF+BUWEPkieGefiTVO7gI6OeCcSlABx7EGhSC1ZdJuZzM3nBYRvC/9nPJVVtrVfA=="}' + string: '{"primarySharedKey":"WVJuQIMl5CuL/o66bEpWnT9ljH52D8fsZT9YHg+lqtMj4veoMmo9OYv0DpHZ8LU7vgr6Q+3GBXtlBeDv3L2WxA==","secondarySharedKey":"sAbg1iKKPSPLDC5USIUmQdG1LuRz+kPAIzKJF2HDN4ebv87Ltm8u0E7GB6yB3EAV/WvLW1Iw/heuCt0p+TA/Kw=="}' headers: access-control-allow-origin: - '*' @@ -960,7 +974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:11 GMT + - Wed, 26 Jul 2023 05:18:15 GMT expires: - '-1' pragma: @@ -969,14 +983,14 @@ interactions: - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: 67DC1496B8244D9098B0DBC5040E90D9 Ref B: CO6AA3150220051 Ref C: 2023-07-26T05:18:15Z' x-powered-by: - ASP.NET status: @@ -985,8 +999,8 @@ interactions: - request: body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "46e0fcdd-a3be-4314-89fa-cb6884416397", - "sharedKey": "ViWPHfIFJk1w09YknVEMzrhGYK9yT1suNXQ9Dqxhn6hd6CkKK3AGSrDTYTCiVD1Tj5xuvDQSzUoTuGiSu1iIqA=="}}, + "logAnalyticsConfiguration": {"customerId": "5b1af85e-56e9-44d4-8dab-714ee4e757b2", + "sharedKey": "WVJuQIMl5CuL/o66bEpWnT9ljH52D8fsZT9YHg+lqtMj4veoMmo9OYv0DpHZ8LU7vgr6Q+3GBXtlBeDv3L2WxA=="}}, "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": false}}' headers: @@ -1011,40 +1025,399 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1537' + - '1540' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:20 GMT + - Wed, 26 Jul 2023 05:18:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-msedge-ref: + - 'Ref A: 09A0123463FD49A496217CBE0105BE70 Ref B: CO6AA3150217029 Ref C: 2023-07-26T05:18:16Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: C11925DA8BE84680BFE1965857CF1ABB Ref B: CO6AA3150218037 Ref C: 2023-07-26T05:18:27Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 452E78CF050B4351B1BDDDA81F374BC3 Ref B: CO6AA3150218033 Ref C: 2023-07-26T05:18:29Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D8E80C1751984F5F9748D1D8073D25C8 Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:18:32Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 56DB0CDB28E24FB8971E8EED3841060E Ref B: CO6AA3150219029 Ref C: 2023-07-26T05:18:35Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 2C8F86D4C8224CC69C714F5573C3F3B1 Ref B: CO6AA3150220011 Ref C: 2023-07-26T05:18:38Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 38DEF9DEBFE84DEDB9BCC360D1A8156E Ref B: CO6AA3150220039 Ref C: 2023-07-26T05:18:41Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:18:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + x-msedge-ref: + - 'Ref A: 3843C082EEB5463E9B6AD9071701A060 Ref B: CO6AA3150219053 Ref C: 2023-07-26T05:18:44Z' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1061,10 +1434,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1076,21 +1449,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:21 GMT + - Wed, 26 Jul 2023 05:18:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 52D962CA520A4C7BB1E495EEE9ACA094 Ref B: CO6AA3150220009 Ref C: 2023-07-26T05:18:46Z' x-powered-by: - ASP.NET status: @@ -1112,10 +1485,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1127,21 +1500,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:24 GMT + - Wed, 26 Jul 2023 05:18: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 + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 59A88747BD5444B2B5F184C999F5A0BB Ref B: CO6AA3150218039 Ref C: 2023-07-26T05:18:49Z' x-powered-by: - ASP.NET status: @@ -1163,10 +1536,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1178,21 +1551,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:27 GMT + - Wed, 26 Jul 2023 05:18:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C46C5C88E75749E98695F376183E4CEA Ref B: CO6AA3150220053 Ref C: 2023-07-26T05:18:52Z' x-powered-by: - ASP.NET status: @@ -1214,10 +1587,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1229,21 +1602,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:30 GMT + - Wed, 26 Jul 2023 05:18:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CEA50A1E12FA4BE59C707219B5A5F4EC Ref B: CO6AA3150219011 Ref C: 2023-07-26T05:18:54Z' x-powered-by: - ASP.NET status: @@ -1265,10 +1638,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1280,21 +1653,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:33 GMT + - Wed, 26 Jul 2023 05:18: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 + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C6729B63F9774BDDAA2B52B5A971C291 Ref B: CO6AA3150217009 Ref C: 2023-07-26T05:18:57Z' x-powered-by: - ASP.NET status: @@ -1316,10 +1689,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1331,21 +1704,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:36 GMT + - Wed, 26 Jul 2023 05:19:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3579638BA4CC49D38BF174EF0A82F12B Ref B: CO6AA3150220035 Ref C: 2023-07-26T05:18:59Z' x-powered-by: - ASP.NET status: @@ -1367,10 +1740,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1382,21 +1755,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:38 GMT + - Wed, 26 Jul 2023 05:19:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A090EB3A8C2A48E0856D66408F9AD964 Ref B: CO6AA3150220011 Ref C: 2023-07-26T05:19:02Z' x-powered-by: - ASP.NET status: @@ -1418,10 +1791,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1433,21 +1806,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:42 GMT + - Wed, 26 Jul 2023 05:19: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 + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 89FAFB54E77E4A4D92291EC5EC0FF679 Ref B: CO6AA3150219031 Ref C: 2023-07-26T05:19:04Z' x-powered-by: - ASP.NET status: @@ -1469,10 +1842,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1484,21 +1857,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:44 GMT + - Wed, 26 Jul 2023 05:19:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D2E4396990B042F5A401F7B78BB675EE Ref B: CO6AA3150220047 Ref C: 2023-07-26T05:19:07Z' x-powered-by: - ASP.NET status: @@ -1520,10 +1893,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1535,21 +1908,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:48 GMT + - Wed, 26 Jul 2023 05:19:10 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1A6DFA67ADA24340BEAA73BB37AE2CCC Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:19:11Z' x-powered-by: - ASP.NET status: @@ -1571,10 +1944,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1586,21 +1959,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:51 GMT + - Wed, 26 Jul 2023 05:19:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CFC492A7F209488D8D57C351955C2579 Ref B: CO6AA3150217027 Ref C: 2023-07-26T05:19:13Z' x-powered-by: - ASP.NET status: @@ -1622,10 +1995,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"InProgress","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1637,21 +2010,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:54 GMT + - Wed, 26 Jul 2023 05:19:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4A776780D143452FA3B93B9E2B12D845 Ref B: CO6AA3150220025 Ref C: 2023-07-26T05:19:16Z' x-powered-by: - ASP.NET status: @@ -1673,10 +2046,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d17b081c-7f28-4d06-bc28-b41decdc6315","name":"d17b081c-7f28-4d06-bc28-b41decdc6315","status":"Succeeded","startTime":"2023-07-08T07:13:20.1069314"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"Succeeded","startTime":"2023-07-26T05:18:26.7612538"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1688,21 +2061,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:56 GMT + - Wed, 26 Jul 2023 05:19: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-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AF738B49B76945C199C214E8B8446B63 Ref B: CO6AA3150220025 Ref C: 2023-07-26T05:19:18Z' x-powered-by: - ASP.NET status: @@ -1728,7 +2101,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1736,25 +2109,25 @@ interactions: cache-control: - no-cache content-length: - - '1537' + - '1540' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:13:58 GMT + - Wed, 26 Jul 2023 05:19: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 + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EA2F58FED0604AB889FA86B68078C111 Ref B: CO6AA3150217011 Ref C: 2023-07-26T05:19:19Z' x-powered-by: - ASP.NET status: @@ -1785,32 +2158,34 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-029a86dd-1d5f-11ee-9f6d-bce92fa43675?api-version=2022-02-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview cache-control: - no-cache content-length: - - '1380' + - '1377' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:12 GMT + - Wed, 26 Jul 2023 05:19:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F15B3A77675F4D14B3AEF2F483E4A0F5 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:20Z' status: code: 201 message: Created @@ -1831,7 +2206,56 @@ interactions: - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-029a86dd-1d5f-11ee-9f6d-bce92fa43675?api-version=2022-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview + response: + body: + string: '{"status":"Creating"}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 05:19:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 103673303F744BBAACBE3E42318AAD66 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:28Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview response: body: string: '{"status":"Succeeded"}' @@ -1839,7 +2263,7 @@ interactions: api-supported-versions: - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-029a86dd-1d5f-11ee-9f6d-bce92fa43675?api-version=2022-02-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview cache-control: - no-cache content-length: @@ -1847,21 +2271,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:12 GMT + - Wed, 26 Jul 2023 05:19:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 869B2A8CF7914C7A858DE127FAE0A6DF Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:38Z' status: code: 200 message: OK @@ -1885,32 +2307,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview cache-control: - no-cache content-length: - - '1381' + - '1378' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:12 GMT + - Wed, 26 Jul 2023 05:19:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C5D06483EA4D40819C4F6588A6C30FA2 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:39Z' status: code: 200 message: OK @@ -1934,18 +2354,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview cache-control: - no-cache content-length: - - '1381' + - '1378' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:14 GMT + - Wed, 26 Jul 2023 05:19:39 GMT expires: - '-1' pragma: @@ -1985,7 +2405,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview response: body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"aIhyAOHydj19LseDQVhSPHuYbsMHAnfb0JVm6CmbXi+ACRBbiI17"},{"name":"password2","value":"A1cC09wpT3lUtwBZhSwCm9Pzbi+q9IGVZ3jh+4Ay73+ACRBtWalS"}]}' + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"qbWyw0+mnDJlbg8i+4TxtIQ5uSpQVpzr9RVsarwMTd+ACRBLPLmY"},{"name":"password2","value":"ZlRCmmAFZYLrIdGJDHFpXG3nsD9kUVuie1RomH9pKO+ACRDd55cX"}]}' headers: api-supported-versions: - 2022-02-01-preview @@ -1996,7 +2416,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:14 GMT + - Wed, 26 Jul 2023 05:19:40 GMT expires: - '-1' pragma: @@ -2129,7 +2549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:14 GMT + - Wed, 26 Jul 2023 05:19:40 GMT expires: - '-1' pragma: @@ -2164,7 +2584,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -2172,11 +2592,11 @@ interactions: cache-control: - no-cache content-length: - - '1537' + - '1540' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:16 GMT + - Wed, 26 Jul 2023 05:19:40 GMT expires: - '-1' pragma: @@ -2309,7 +2729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:17 GMT + - Wed, 26 Jul 2023 05:19:40 GMT expires: - '-1' pragma: @@ -2344,7 +2764,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -2352,11 +2772,11 @@ interactions: cache-control: - no-cache content-length: - - '1537' + - '1540' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:18 GMT + - Wed, 26 Jul 2023 05:19:42 GMT expires: - '-1' pragma: @@ -2403,7 +2823,7 @@ interactions: content-length: - '0' date: - - Sat, 08 Jul 2023 07:14:18 GMT + - Wed, 26 Jul 2023 05:19:42 GMT expires: - '-1' pragma: @@ -2436,7 +2856,7 @@ interactions: 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":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:13:15.2736528","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:13:15.2736528"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicecoast-b1602668.westeurope.azurecontainerapps.io","staticIp":"20.101.11.43","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"46e0fcdd-a3be-4314-89fa-cb6884416397","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -2444,11 +2864,11 @@ interactions: cache-control: - no-cache content-length: - - '1537' + - '1540' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:20 GMT + - Wed, 26 Jul 2023 05:19:43 GMT expires: - '-1' pragma: @@ -2499,7 +2919,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:21 GMT + - Wed, 26 Jul 2023 05:19:43 GMT expires: - '-1' pragma: @@ -2533,16 +2953,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2g77p3nurkfjlsjzrkvxkrnxzjie3ecuq5z27v67wn7kn2bp7yzzyx7opqwakn6t/providers/Microsoft.ContainerRegistry/registries/containerappsnfatmtjjrri","name":"containerappsnfatmtjjrri","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T06:22:59.1080657Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T06:22:59.1080657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdksh6adyzsdtsskn73xjpztc7ysyosa4zupycqyveoabwax62cwrjjnvtscg76ndb/providers/Microsoft.ContainerRegistry/registries/containerapptcr7ww3ydgnx","name":"containerapptcr7ww3ydgnx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:37:34.4109563Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:37:34.4109563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cmn735q7w2nwwebppb5clx7mirv4xiylykhjye674ol2n3ijchndft46d3fsuw2r/providers/Microsoft.ContainerRegistry/registries/containerappimdj6e7r2gye","name":"containerappimdj6e7r2gye","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:53:07.4694556Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:53:07.4694556Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv4b4fipvuwf57kz3fxssmj7tpfpzncvupsohhfjr55gmfxvww3272nz4kbqvczmbn/providers/Microsoft.ContainerRegistry/registries/containerappq73aloxzz2f4","name":"containerappq73aloxzz2f4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:24.1395549Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:24.1395549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeligh3rsqvhhs3g3u4omisskxfsz7mofruquyma4xt26fgbbxxfst7j6ozmafmfjp/providers/Microsoft.ContainerRegistry/registries/containerappe26fbem5qobi","name":"containerappe26fbem5qobi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:11:09.2869299Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:11:09.2869299Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrpih42vas4rxn6y2mg7ziqfpwydfd7v3fdcujs6qji6xofmp26r5cfvqrho64jx5j/providers/Microsoft.ContainerRegistry/registries/containerappht4ujbqscf6c","name":"containerappht4ujbqscf6c","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0811852Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0811852Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpqo2bynzrtzy7hehcnoopzcgigliypgumob5rrw74vfmrqxf3v7ucpmdqwfz4rd5j/providers/Microsoft.ContainerRegistry/registries/containerappr3s6fbx6lppt","name":"containerappr3s6fbx6lppt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:06.0645891Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:06.0645891Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn37hfrmloz6jtk2snhwvzqaiemzxxmjtsqkgngpw3kpqzd4pffzxg3fmwlj7pkbaq/providers/Microsoft.ContainerRegistry/registries/containerappjnakgsbs3bbp","name":"containerappjnakgsbs3bbp","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' headers: cache-control: - no-cache content-length: - - '8430' + - '6516' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:21 GMT + - Wed, 26 Jul 2023 05:19:43 GMT expires: - '-1' pragma: @@ -2577,18 +2997,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - '2022-12-01' cache-control: - no-cache content-length: - - '1381' + - '1378' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:21 GMT + - Wed, 26 Jul 2023 05:19:44 GMT expires: - '-1' pragma: @@ -2719,7 +3139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:22 GMT + - Wed, 26 Jul 2023 05:19:44 GMT expires: - '-1' pragma: @@ -2760,7 +3180,7 @@ interactions: content-length: - '0' date: - - Sat, 08 Jul 2023 07:14:22 GMT + - Wed, 26 Jul 2023 05:19:44 GMT expires: - '-1' pragma: @@ -2794,46 +3214,56 @@ interactions: \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n - \ \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n - \ \"builder-dotnet-7.0\",\n \"buildpack\",\n \"buildpack-20230118.1\",\n - \ \"buildpack-20230208.1\",\n \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n - \ \"buildpack-20230417.1\",\n \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n - \ \"buildpack-20230427.1\",\n \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n - \ \"buildpack-20230512.2\",\n \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n - \ \"buildpack-20230605.1\",\n \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n - \ \"buildpack-20230613.1\",\n \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n - \ \"buildpack-20230626.1\",\n \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n - \ \"buildpack-20230707.1\",\n \"buildpack-20230707.2\",\n \"buildpack-dotnet-7.0\",\n - \ \"capps\",\n \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n + \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n + \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n + \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n + \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n + \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n + \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n + \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n + \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n + \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n + \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n + \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n + \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n + \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n - \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n + \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n + \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n - \ \"stack-base\",\n \"stack-base-20230118.1\",\n \"stack-base-20230208.1\",\n - \ \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n \"stack-base-20230410.1\",\n - \ \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n \"stack-base-20230425.1\",\n - \ \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n \"stack-base-20230508.1\",\n - \ \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n \"stack-base-20230531.1\",\n - \ \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n \"stack-base-20230612.1\",\n - \ \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n \"stack-base-20230619.1\",\n - \ \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n \"stack-base-20230630.1\",\n - \ \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n \"stack-build\",\n - \ \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n \"stack-build-20230327.1\",\n - \ \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n \"stack-build-20230417.1\",\n - \ \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n \"stack-build-20230427.1\",\n - \ \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n \"stack-build-20230512.2\",\n - \ \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n \"stack-build-20230605.1\",\n - \ \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n \"stack-build-20230613.1\",\n - \ \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n \"stack-build-20230626.1\",\n - \ \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n \"stack-build-20230707.1\",\n - \ \"stack-build-20230707.2\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n + \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n + \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n + \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n + \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n + \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n + \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n + \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n + \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n + \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n + \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n + \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n + \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n + \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n + \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n + \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n + \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n + \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n + \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n + \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n + \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n + \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n @@ -2842,23 +3272,25 @@ interactions: \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n - \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n + \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n + \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n \ ]\n}" headers: cache-control: - max-age=300 content-length: - - '4636' + - '5624' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:14:22 GMT + - Wed, 26 Jul 2023 05:19:44 GMT etag: - - '0x8DB7F82DB9D1762' + - '0x8DB8D93775B3FAE' last-modified: - - Sat, 08 Jul 2023 07:13:41 GMT + - Wed, 26 Jul 2023 04:47:50 GMT x-cache: - - TCP_MISS + - TCP_HIT x-mcr-privacy: - https://privacy.microsoft.com/en-us/privacystatement x-ms-blob-type: @@ -2868,7 +3300,7 @@ interactions: x-ms-version: - '2009-09-19' x-msedge-ref: - - 'Ref A: 909B08BF99AD4D7991075C2358D042D1 Ref B: CO1EDGE2411 Ref C: 2023-07-08T07:14:22Z' + - 'Ref A: 416756C3D2984ADC8BDD727644F2A96F Ref B: WSTEDGE1007 Ref C: 2023-07-26T05:19:45Z' status: code: 200 message: OK @@ -2894,46 +3326,56 @@ interactions: \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n - \ \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n - \ \"builder-dotnet-7.0\",\n \"buildpack\",\n \"buildpack-20230118.1\",\n - \ \"buildpack-20230208.1\",\n \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n - \ \"buildpack-20230417.1\",\n \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n - \ \"buildpack-20230427.1\",\n \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n - \ \"buildpack-20230512.2\",\n \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n - \ \"buildpack-20230605.1\",\n \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n - \ \"buildpack-20230613.1\",\n \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n - \ \"buildpack-20230626.1\",\n \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n - \ \"buildpack-20230707.1\",\n \"buildpack-20230707.2\",\n \"buildpack-dotnet-7.0\",\n - \ \"capps\",\n \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n + \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n + \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n + \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n + \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n + \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n + \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n + \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n + \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n + \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n + \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n + \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n + \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n + \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n - \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n + \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n + \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n - \ \"stack-base\",\n \"stack-base-20230118.1\",\n \"stack-base-20230208.1\",\n - \ \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n \"stack-base-20230410.1\",\n - \ \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n \"stack-base-20230425.1\",\n - \ \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n \"stack-base-20230508.1\",\n - \ \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n \"stack-base-20230531.1\",\n - \ \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n \"stack-base-20230612.1\",\n - \ \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n \"stack-base-20230619.1\",\n - \ \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n \"stack-base-20230630.1\",\n - \ \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n \"stack-build\",\n - \ \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n \"stack-build-20230327.1\",\n - \ \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n \"stack-build-20230417.1\",\n - \ \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n \"stack-build-20230427.1\",\n - \ \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n \"stack-build-20230512.2\",\n - \ \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n \"stack-build-20230605.1\",\n - \ \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n \"stack-build-20230613.1\",\n - \ \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n \"stack-build-20230626.1\",\n - \ \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n \"stack-build-20230707.1\",\n - \ \"stack-build-20230707.2\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n + \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n + \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n + \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n + \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n + \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n + \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n + \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n + \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n + \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n + \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n + \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n + \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n + \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n + \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n + \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n + \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n + \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n + \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n + \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n + \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n + \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n @@ -2942,21 +3384,23 @@ interactions: \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n - \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n + \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n + \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n \ ]\n}" headers: cache-control: - max-age=300 content-length: - - '4636' + - '5624' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:00 GMT + - Wed, 26 Jul 2023 05:19:47 GMT etag: - - '0x8DB7F82DB9D1762' + - '0x8DB8D97AC6B43E5' last-modified: - - Sat, 08 Jul 2023 07:13:41 GMT + - Wed, 26 Jul 2023 05:17:57 GMT x-cache: - TCP_MISS x-mcr-privacy: @@ -2968,7 +3412,7 @@ interactions: x-ms-version: - '2009-09-19' x-msedge-ref: - - 'Ref A: 408EF16F36E54CBF8C4F10DF9ABD1B92 Ref B: CO1EDGE2609 Ref C: 2023-07-08T07:21:01Z' + - 'Ref A: AA615634CA914BF3A88C2ED5F9D5C358 Ref B: CO1EDGE1213 Ref C: 2023-07-26T05:19:47Z' status: code: 200 message: OK @@ -2992,26 +3436,28 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2g77p3nurkfjlsjzrkvxkrnxzjie3ecuq5z27v67wn7kn2bp7yzzyx7opqwakn6t/providers/Microsoft.ContainerRegistry/registries/containerappsnfatmtjjrri","name":"containerappsnfatmtjjrri","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T06:22:59.1080657Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T06:22:59.1080657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdksh6adyzsdtsskn73xjpztc7ysyosa4zupycqyveoabwax62cwrjjnvtscg76ndb/providers/Microsoft.ContainerRegistry/registries/containerapptcr7ww3ydgnx","name":"containerapptcr7ww3ydgnx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:37:34.4109563Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:37:34.4109563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cmn735q7w2nwwebppb5clx7mirv4xiylykhjye674ol2n3ijchndft46d3fsuw2r/providers/Microsoft.ContainerRegistry/registries/containerappimdj6e7r2gye","name":"containerappimdj6e7r2gye","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T21:53:07.4694556Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T21:53:07.4694556Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv4b4fipvuwf57kz3fxssmj7tpfpzncvupsohhfjr55gmfxvww3272nz4kbqvczmbn/providers/Microsoft.ContainerRegistry/registries/containerappq73aloxzz2f4","name":"containerappq73aloxzz2f4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:24.1395549Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:24.1395549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeligh3rsqvhhs3g3u4omisskxfsz7mofruquyma4xt26fgbbxxfst7j6ozmafmfjp/providers/Microsoft.ContainerRegistry/registries/containerappe26fbem5qobi","name":"containerappe26fbem5qobi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:11:09.2869299Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:11:09.2869299Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn37hfrmloz6jtk2snhwvzqaiemzxxmjtsqkgngpw3kpqzd4pffzxg3fmwlj7pkbaq/providers/Microsoft.ContainerRegistry/registries/containerappjnakgsbs3bbp","name":"containerappjnakgsbs3bbp","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' headers: cache-control: - no-cache content-length: - - '7206' + - '6516' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:17 GMT + - Wed, 26 Jul 2023 05:20:04 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 26971C6F9B42411A93A28AC692190182 Ref B: CO6AA3150219049 Ref C: 2023-07-26T05:20:05Z' status: code: 200 message: OK @@ -3036,32 +3482,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview cache-control: - no-cache content-length: - - '1381' + - '1378' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:18 GMT + - Wed, 26 Jul 2023 05:20:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FD9815D577944EE1B6F4E4C746F23761 Ref B: CO6AA3150220017 Ref C: 2023-07-26T05:20:05Z' status: code: 200 message: OK @@ -3097,7 +3541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:19 GMT + - Wed, 26 Jul 2023 05:20:05 GMT docker-distribution-api-version: - registry/2.0 server: @@ -3106,7 +3550,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://containerapppsi7catvaru2.azurecr.io/oauth2/token",service="containerapppsi7catvaru2.azurecr.io" + - Bearer realm="https://containerapp6mfrefs64x3m.azurecr.io/oauth2/token",service="containerapp6mfrefs64x3m.azurecr.io" x-content-type-options: - nosniff status: @@ -3133,32 +3577,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:14:03.7694889+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:14:03.7694889+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-08T07:14:03.7694889Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-08T07:14:11.3560062+00:00","status":"disabled"}},"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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - 2022-02-01-preview cache-control: - no-cache content-length: - - '1381' + - '1378' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:19 GMT + - Wed, 26 Jul 2023 05:20:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D5E4B3050BF84882A3774212C046C9FB Ref B: CO6AA3150218035 Ref C: 2023-07-26T05:20:06Z' status: code: 200 message: OK @@ -3194,7 +3636,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:20 GMT + - Wed, 26 Jul 2023 05:20:06 GMT docker-distribution-api-version: - registry/2.0 server: @@ -3203,14 +3645,14 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://containerapppsi7catvaru2.azurecr.io/oauth2/token",service="containerapppsi7catvaru2.azurecr.io" + - Bearer realm="https://containerapp6mfrefs64x3m.azurecr.io/oauth2/token",service="containerapp6mfrefs64x3m.azurecr.io" x-content-type-options: - nosniff status: code: 401 message: Unauthorized - request: - body: grant_type=access_token&service=containerapppsi7catvaru2.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyIsImtpZCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjg4ODAwMDgyLCJuYmYiOjE2ODg4MDAwODIsImV4cCI6MTY4ODgwNTI4OSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2YzOTM4ZTg3LThjMjUtNDExZS1hN2E0LTc5ZjMzMDM1Yjk1ZS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBSEJ3aDRxdGFwdk5hWmFpUWZFUXNubFhaeVBJanY2T0JuUUkvM2g4Q2E4YzNMZDQ1SFczWk5NbmZLMmo0NkpiNW1TSmFZQ2FDd21nOGx5dEFFUnJNcVZLSy9GVkVMQUlqTnVHVlhITUxZeGs9IiwiYW1yIjpbInJzYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiZDNlODYyMTQtYmZiMy00ODdiLWE3MGItZWMxYTczZDE2YmQ3IiwiZmFtaWx5X25hbWUiOiJQYXJ0aGFzYXJhdGh5IiwiZ2l2ZW5fbmFtZSI6IlNuZWhhIiwiaXBhZGRyIjoiMjAwMTo0ODk4OjgwZTg6YjplOTFjOjRiMDc6MTllZDpkNjMiLCJuYW1lIjoiU25laGEgUGFydGhhc2FyYXRoeSIsIm9pZCI6ImYzOTM4ZTg3LThjMjUtNDExZS1hN2E0LTc5ZjMzMDM1Yjk1ZSIsIm9ucHJlbV9zaWQiOiJTLTEtNS0yMS0yMTI3NTIxMTg0LTE2MDQwMTI5MjAtMTg4NzkyNzUyNy01ODQ1MDYxMSIsInB1aWQiOiIxMDAzMjAwMjA2MkQ1NjEwIiwicmgiOiIwLkFSb0F2NGo1Y3ZHR3IwR1JxeTE4MEJIYlIwWklmM2tBdXRkUHVrUGF3ZmoyTUJNYUFBYy4iLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJVaGxUZlNxVENSRlUyLU1XZDNjRDNyUTNmdkZJZGpTOTVKSVZCVmNJMHdrIiwidGlkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwidW5pcXVlX25hbWUiOiJzbmVoYXBhckBtaWNyb3NvZnQuY29tIiwidXBuIjoic25laGFwYXJAbWljcm9zb2Z0LmNvbSIsInV0aSI6InFNVm9US2liSVVLc28yVFU2THVqQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbImI3OWZiZjRkLTNlZjktNDY4OS04MTQzLTc2YjE5NGU4NTUwOSJdLCJ4bXNfY2MiOlsiQ1AxIl0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.a8vUowdmiJTEyIniSuUb2qIflRhU8CquPvBf-3tRVL2TxJs5Xei7rXkh3XC468XhgKiwfOLeW4XL494h8WjEQc0WCqmT8iGX74fPUK5zGMbgU48vVjY4MzDUv_etBy795JVsjlEgTYP1K7ipy7QaIfEV5WC9SCkmntlTdkzZh12iTMRGkxzDsmxATNpqxpWwftVTtuE6oU_WMtzOCeBH_WSYFh3Q_UUTZ2cd6t-YEm-kHN_P0Luszrn1z4er_P7GEVclMpKrX1irE2BNSzaSIzy9q5PUDc79ELt71NI4oo_d644vUtYdMP2B_yypidHdZDv3Nm9v7EVV3omgaE8fKQ + body: grant_type=access_token&service=containerapp6mfrefs64x3m.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyIsImtpZCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjkwMzQ3MzkwLCJuYmYiOjE2OTAzNDczOTAsImV4cCI6MTY5MDM1MTg2MiwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2YzOTM4ZTg3LThjMjUtNDExZS1hN2E0LTc5ZjMzMDM1Yjk1ZS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFVBQUFBQzdjT0FsaXNnQkdYQmlQblowcEJHQk5jSU91ejFmTExxaHpVYWlleGFsWmo5TlVGRG9lNEhYckZwdEF5ZlMvc0hDQlRwVEVhVmxEWiswL1dGVjNQdUYrbzRaU2EzRE5WZk1qcisrMGtMSTQ9IiwiYW1yIjpbInJzYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiZDNlODYyMTQtYmZiMy00ODdiLWE3MGItZWMxYTczZDE2YmQ3IiwiZmFtaWx5X25hbWUiOiJQYXJ0aGFzYXJhdGh5IiwiZ2l2ZW5fbmFtZSI6IlNuZWhhIiwiaXBhZGRyIjoiMjAwMTo0ODk4OjgwZTg6ODpmOTkzOjNiMDQ6MzRmMDplYmM1IiwibmFtZSI6IlNuZWhhIFBhcnRoYXNhcmF0aHkiLCJvaWQiOiJmMzkzOGU4Ny04YzI1LTQxMWUtYTdhNC03OWYzMzAzNWI5NWUiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctNTg0NTA2MTEiLCJwdWlkIjoiMTAwMzIwMDIwNjJENTYxMCIsInJoIjoiMC5BUm9BdjRqNWN2R0dyMEdScXkxODBCSGJSMFpJZjNrQXV0ZFB1a1Bhd2ZqMk1CTWFBQWMuIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiVWhsVGZTcVRDUkZVMi1NV2QzY0QzclEzZnZGSWRqUzk1SklWQlZjSTB3ayIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoic25laGFwYXJAbWljcm9zb2Z0LmNvbSIsInVwbiI6InNuZWhhcGFyQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJ1UWtvWHVkMFNVNkQwZDR1SlRJM0FBIiwidmVyIjoiMS4wIiwid2lkcyI6WyJiNzlmYmY0ZC0zZWY5LTQ2ODktODE0My03NmIxOTRlODU1MDkiXSwieG1zX2NjIjpbIkNQMSJdLCJ4bXNfdGNkdCI6MTI4OTI0MTU0N30.Dhn-xqaoWf8TIxzdgr6NjQ-VGlb9T4Maoiz7wIgDLq2gyCSp0YFZ4u0LbZhB0_rqMBMUFC3F6x3ciLLV2pxeyB7Q7cYCrTx37FpVv6snuvUROAkknriQlwvPPPxX2c6AWRTBy8bQ41Q3DMXTJRcMJK-INWuDMUPugoj3f_mugjNqYeEp804VYqTyrQ0oD8ZM1sw3QeP4Q6ZNz_YP9ZKhP0JO2Y5HKB_of_ePROzNHgiFYCnLjOm_hR9JzrkGJK9NvJFoVRAAd9VPYKl-KMnPGigIUk6l7PwiMnnrjGoM94qkhvzNRvyG_0myYvbuN3mQ8v2SbRkML9u0ZSnCczPcCQ headers: Accept: - '*/*' @@ -3219,7 +3661,7 @@ interactions: Connection: - keep-alive Content-Length: - - '2315' + - '2316' Content-Type: - application/x-www-form-urlencoded User-Agent: @@ -3228,14 +3670,14 @@ interactions: uri: https://containerapp000004.azurecr.io/oauth2/exchange response: body: - string: '{"refresh_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkNPQVU6UERZSDo0SVJYOjM2SEI6TFYzUDpWNFBGOko0NzQ6SzNOSjpPS1JCOlRZQUo6NEc0Szo1Q1NEIn0.eyJqdGkiOiJlNDRkMzA4Ny00MTBjLTRmZTktYWFhNi03NGRjNGEwYjM5NjgiLCJzdWIiOiJzbmVoYXBhckBtaWNyb3NvZnQuY29tIiwibmJmIjoxNjg4Nzk5OTgxLCJleHAiOjE2ODg4MTE2ODEsImlhdCI6MTY4ODc5OTk4MSwiaXNzIjoiQXp1cmUgQ29udGFpbmVyIFJlZ2lzdHJ5IiwiYXVkIjoiY29udGFpbmVyYXBwcHNpN2NhdHZhcnUyLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiYjQ5NjhkZDJkMTYxNDI4NWE2N2EwMTczNmY3YjczNWMiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwidGVuYW50IjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwicGVybWlzc2lvbnMiOnsiQWN0aW9ucyI6WyJyZWFkIiwid3JpdGUiLCJkZWxldGUiLCJkZWxldGVkL3JlYWQiLCJkZWxldGVkL3Jlc3RvcmUvYWN0aW9uIl0sIk5vdEFjdGlvbnMiOm51bGx9LCJyb2xlcyI6W119.4mWQ_ADSgzzJdbAcAq2ZPeO_JSE7ofnnxs9QT5l6y0eQXIPZxfoFzYtBa0q0NmLGCgHbEeUGSxz9ZRWwRPyCL3-cym6WrGm0VUCfxIOlqxtREnJgRsSoBXYjIQq06ACQX1DkdlydTuVKMrdrd6NRunp6Cf7qGKej4siM1eUeY8RN5PesNoBdvsAwu0LNMfJSo5Wb5qyq3xk-apIhWbMaUomHYZ3IjAjupwcUQqH-tnYI9HHqDMmvKmtp7gErlYx_M1KSGySv-n6KeIHuO6mRqmCoIlj8yJHKc7QpnRT5E1TKhxBIgry1giwEYfzDEvgeiC6jS3R-yDxZ_E-eUVpw4A"}' + string: '{"refresh_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkNPQVU6UERZSDo0SVJYOjM2SEI6TFYzUDpWNFBGOko0NzQ6SzNOSjpPS1JCOlRZQUo6NEc0Szo1Q1NEIn0.eyJqdGkiOiIzMzVjMDA3OC0xNGJkLTRkOWMtYTEzYS1kNDI2ZDlkMTI2NTkiLCJzdWIiOiJzbmVoYXBhckBtaWNyb3NvZnQuY29tIiwibmJmIjoxNjkwMzQ3OTA3LCJleHAiOjE2OTAzNTk2MDcsImlhdCI6MTY5MDM0NzkwNywiaXNzIjoiQXp1cmUgQ29udGFpbmVyIFJlZ2lzdHJ5IiwiYXVkIjoiY29udGFpbmVyYXBwNm1mcmVmczY0eDNtLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiNWY1YWU2OGJiNjU5NGFmNzhjNWQ2N2I2ZWU2MmQxOTAiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwidGVuYW50IjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwicGVybWlzc2lvbnMiOnsiQWN0aW9ucyI6WyJyZWFkIiwid3JpdGUiLCJkZWxldGUiLCJkZWxldGVkL3JlYWQiLCJkZWxldGVkL3Jlc3RvcmUvYWN0aW9uIl0sIk5vdEFjdGlvbnMiOm51bGx9LCJyb2xlcyI6W119.VZ4PjopNWPWJZ57R_IiL1ZEHvplSbDjaZDh5J2nAbLt0G6Ovx4Ec7UAhzN8pUQ5nlucKGyWpwPcvSS1N9db2BmbvLudSmKxrMuHSb1rqN2lDDh9c0pMvMV_9xU3AokZ8Sw9HAIy6sbdAyKY1TWrlVTNij7n31pmdgblFf7UgdEWOZ-VfytdjUG7B-h3Myf411_SM1_nAQP93OfRIIVm7IsUby8mbndeiuKpOP-oSQZFf3yxRA52WyzOhMjE1AzXGxXdHTz7pkrSjKpxaFf0fEfio_GKqFLk5mANEdlMjEZgPBKOB6Cd-LTx4K6e7EjuXl9LNoKmeaxrsskNnRccAZA"}' headers: connection: - keep-alive content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:21 GMT + - Wed, 26 Jul 2023 05:20:07 GMT server: - openresty strict-transport-security: @@ -3249,13 +3691,13 @@ interactions: body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "aIhyAOHydj19LseDQVhSPHuYbsMHAnfb0JVm6CmbXi+ACRBbiI17"}], "activeRevisionsMode": + "value": "qbWyw0+mnDJlbg8i+4TxtIQ5uSpQVpzr9RVsarwMTd+ACRBLPLmY"}], "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 8080, "transport": "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": - "containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.8-cbl-mariner2.0-20230708001422750546", + "containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230725221946750509", "name": "containerapp000003", "command": null, "args": null, "env": null, "resources": null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' @@ -3282,35 +3724,37 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:21:37.0463983Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:21:37.0463983Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.101.10.159"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicecoast-b1602668.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.8-cbl-mariner2.0-20230708001422750546","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:21.2537164Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:21.2537164Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.31.57.78"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230725221946750509","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '2442' + - '2441' content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:40 GMT + - Wed, 26 Jul 2023 05:20:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-async-operation-timeout: - PT15M x-ms-ratelimit-remaining-subscription-resource-requests: - '699' + x-msedge-ref: + - 'Ref A: 02034AFE163A4926BD3D4E08ED1BA550 Ref B: CO6AA3150218029 Ref C: 2023-07-26T05:20:20Z' x-powered-by: - ASP.NET status: @@ -3333,10 +3777,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0","name":"2f6297a9-bb49-49f2-accf-9672806ebba0","status":"InProgress","startTime":"2023-07-08T07:21:37.9202533"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","name":"9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","status":"InProgress","startTime":"2023-07-26T05:20:22.0813448"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -3348,21 +3792,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:41 GMT + - Wed, 26 Jul 2023 05:20:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C23EDFB52A9D4C70ACDC7EE3AD57B860 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:20:24Z' x-powered-by: - ASP.NET status: @@ -3385,10 +3829,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0","name":"2f6297a9-bb49-49f2-accf-9672806ebba0","status":"InProgress","startTime":"2023-07-08T07:21:37.9202533"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","name":"9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","status":"InProgress","startTime":"2023-07-26T05:20:22.0813448"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -3400,21 +3844,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:44 GMT + - Wed, 26 Jul 2023 05:20:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8B51253F87854BCFB7313D46A99BEAA3 Ref B: CO6AA3150217029 Ref C: 2023-07-26T05:20:27Z' x-powered-by: - ASP.NET status: @@ -3437,10 +3881,10 @@ interactions: User-Agent: - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/2f6297a9-bb49-49f2-accf-9672806ebba0","name":"2f6297a9-bb49-49f2-accf-9672806ebba0","status":"Succeeded","startTime":"2023-07-08T07:21:37.9202533"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","name":"9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","status":"Succeeded","startTime":"2023-07-26T05:20:22.0813448"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -3452,21 +3896,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:47 GMT + - Wed, 26 Jul 2023 05:20:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 84BA8BC4FA0C47D197A0B04295783F43 Ref B: CO6AA3150219019 Ref C: 2023-07-26T05:20:30Z' x-powered-by: - ASP.NET status: @@ -3493,7 +3937,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:21:37.0463983","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:21:37.0463983"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.101.10.159"],"latestRevisionName":"containerapp000003--s0nvn3i","latestReadyRevisionName":"containerapp000003--s0nvn3i","latestRevisionFqdn":"containerapp000003--s0nvn3i.nicecoast-b1602668.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicecoast-b1602668.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.8-cbl-mariner2.0-20230708001422750546","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:21.2537164","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:21.2537164"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.31.57.78"],"latestRevisionName":"containerapp000003--c68jiee","latestReadyRevisionName":"containerapp000003--c68jiee","latestRevisionFqdn":"containerapp000003--c68jiee.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230725221946750509","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -3505,21 +3949,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:50 GMT + - Wed, 26 Jul 2023 05:20:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C8C7553284864BD4A6BC303282143643 Ref B: CO6AA3150217011 Ref C: 2023-07-26T05:20:31Z' x-powered-by: - ASP.NET status: @@ -3637,17 +4081,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:50 GMT + - Wed, 26 Jul 2023 05:20:32 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A018DD4FCB344094AAA0D11A2A981C69 Ref B: CO6AA3150220009 Ref C: 2023-07-26T05:20:32Z' status: code: 200 message: OK @@ -3671,7 +4117,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T07:21:37.0463983","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T07:21:37.0463983"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.101.10.159"],"latestRevisionName":"containerapp000003--s0nvn3i","latestReadyRevisionName":"containerapp000003--s0nvn3i","latestRevisionFqdn":"containerapp000003--s0nvn3i.nicecoast-b1602668.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicecoast-b1602668.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.8-cbl-mariner2.0-20230708001422750546","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:21.2537164","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:21.2537164"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.31.57.78"],"latestRevisionName":"containerapp000003--c68jiee","latestReadyRevisionName":"containerapp000003--c68jiee","latestRevisionFqdn":"containerapp000003--c68jiee.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230725221946750509","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -3683,21 +4129,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 08 Jul 2023 07:21:52 GMT + - Wed, 26 Jul 2023 05:20:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 299218EBCA6242D2988CE4861A468BC9 Ref B: CO6AA3150219053 Ref C: 2023-07-26T05:20:32Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py index 22287759a0b..83859d9cc96 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py @@ -13,8 +13,7 @@ TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) class ContainerAppCreateTest(ScenarioTest): - @live_only() - @ResourceGroupPreparer(location="westeurope") + @ResourceGroupPreparer(location="eastus") def test_containerapp_create_source_with_Dockerfile_e2e(self, resource_group): source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_dockerfile")) ingress = 'external' @@ -22,23 +21,20 @@ def test_containerapp_create_source_with_Dockerfile_e2e(self, resource_group): create_and_verify_containerapp_create(self, resource_group=resource_group, source_path=source_path, ingress=ingress, target_port=target_port) @live_only() - @ResourceGroupPreparer(location="westeurope") + @ResourceGroupPreparer(location="eastus") def test_containerapp_create_source_with_buildpack_e2e(self, resource_group): source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_buildpack")) ingress = 'external' target_port = '8080' create_and_verify_containerapp_create(self, resource_group=resource_group, source_path=source_path, ingress=ingress, target_port=target_port) - @live_only() - @ResourceGroupPreparer(location="westeurope") + @ResourceGroupPreparer(location="eastus") def test_containerapp_create_source_and_image_e2e(self, resource_group): image = "mcr.microsoft.com/dotnet/runtime:7.0" source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_dockerfile")) create_and_verify_containerapp_create(self,resource_group=resource_group, image=image, source_path=source_path) - @live_only() - @ResourceGroupPreparer(location="westeurope") - @unittest.skip("acr_task_run function from acr module uses outdated Storage SDK which does not work with testing.") + @ResourceGroupPreparer(location="eastus") def test_containerapp_create_source_with_acr_task_e2e(self, resource_group): source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_acr_task")) ingress = 'external' From 0b2098bbec0c3d086d13c66c964beea060a2293b Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Wed, 26 Jul 2023 12:30:30 -0700 Subject: [PATCH 13/15] Refactor validation --- src/containerapp/azext_containerapp/_validators.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/containerapp/azext_containerapp/_validators.py b/src/containerapp/azext_containerapp/_validators.py index 8488ecd1cd0..be16f58faab 100644 --- a/src/containerapp/azext_containerapp/_validators.py +++ b/src/containerapp/azext_containerapp/_validators.py @@ -27,11 +27,11 @@ def validate_create(registry_identity, registry_pass, registry_user, registry_se if source or repo: if not registry_server or not registry_user or not registry_pass: raise RequiredArgumentMissingError('Usage error: --registry-server, --registry-username and --registry-password are required while using --source or --repo.') - if repo and registry_server and "azurecr.io" in registry_server: - parsed = urlparse(registry_server) - registry_name = (parsed.netloc if parsed.scheme else parsed.path).split(".")[0] - if registry_name and len(registry_name) > MAXIMUM_SECRET_LENGTH: - raise ValidationError(f"--registry-server ACR name must be less than {MAXIMUM_SECRET_LENGTH} " + if "azurecr.io" in registry_server: + parsed = urlparse(registry_server) + registry_name = (parsed.netloc if parsed.scheme else parsed.path).split(".")[0] + if registry_name and len(registry_name) > MAXIMUM_SECRET_LENGTH: + raise ValidationError(f"--registry-server ACR name must be less than {MAXIMUM_SECRET_LENGTH} " "characters when using --repo") if registry_identity and (registry_pass or registry_user): raise MutuallyExclusiveArgumentError("Cannot provide both registry identity and username/password") From 3fd9fdeaafc5b12efe106691e178564734aad21e Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Wed, 26 Jul 2023 12:52:18 -0700 Subject: [PATCH 14/15] Revert validation change --- .../azext_containerapp/_validators.py | 10 +- ...tainerapp_create_source_and_image_e2e.yaml | 6709 -------- ...app_create_source_with_Dockerfile_e2e.yaml | 6813 -------- ...erapp_create_source_with_acr_task_e2e.yaml | 13355 ---------------- ...rapp_create_source_with_buildpack_e2e.yaml | 4152 ----- 5 files changed, 5 insertions(+), 31034 deletions(-) delete mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml delete mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml delete mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml delete mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml diff --git a/src/containerapp/azext_containerapp/_validators.py b/src/containerapp/azext_containerapp/_validators.py index be16f58faab..8488ecd1cd0 100644 --- a/src/containerapp/azext_containerapp/_validators.py +++ b/src/containerapp/azext_containerapp/_validators.py @@ -27,11 +27,11 @@ def validate_create(registry_identity, registry_pass, registry_user, registry_se if source or repo: if not registry_server or not registry_user or not registry_pass: raise RequiredArgumentMissingError('Usage error: --registry-server, --registry-username and --registry-password are required while using --source or --repo.') - if "azurecr.io" in registry_server: - parsed = urlparse(registry_server) - registry_name = (parsed.netloc if parsed.scheme else parsed.path).split(".")[0] - if registry_name and len(registry_name) > MAXIMUM_SECRET_LENGTH: - raise ValidationError(f"--registry-server ACR name must be less than {MAXIMUM_SECRET_LENGTH} " + if repo and registry_server and "azurecr.io" in registry_server: + parsed = urlparse(registry_server) + registry_name = (parsed.netloc if parsed.scheme else parsed.path).split(".")[0] + if registry_name and len(registry_name) > MAXIMUM_SECRET_LENGTH: + raise ValidationError(f"--registry-server ACR name must be less than {MAXIMUM_SECRET_LENGTH} " "characters when using --repo") if registry_identity and (registry_pass or registry_user): raise MutuallyExclusiveArgumentError("Cannot provide both registry identity and username/password") diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml deleted file mode 100644 index 3984a9192bb..00000000000 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml +++ /dev/null @@ -1,6709 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C359BB27A219447FA7EEA65F96024A76 Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9AA452568BBB4ED9A2A6C0907859AA83 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7EF636E0192F432FBC0575B8F42308E8 Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: EFF3B5C19B2148ECBFCC41C3159B8FB3 Ref B: CO6AA3150218047 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"querypacks","locations":["West Central - US","East US","South Central US","North Europe","West Europe","Southeast Asia","West - US 2","UK South","Canada Central","Central India","Japan East","Australia - East","Korea Central","France Central","Central US","East US 2","East Asia","West - US","South Africa North","North Central US","Brazil South","Switzerland North","Norway - East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland - West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia - Central","France South","South India","Korea South","Jio India Central","Jio - India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East - US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Switzerland North","Switzerland West","Germany West Central","Australia - Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway - East","Norway West","France South","South India","Korea South","Jio India - Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '13285' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7D27953DEBC949BAABBED9FFC37B7CE1 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"querypacks","locations":["West Central - US","East US","South Central US","North Europe","West Europe","Southeast Asia","West - US 2","UK South","Canada Central","Central India","Japan East","Australia - East","Korea Central","France Central","Central US","East US 2","East Asia","West - US","South Africa North","North Central US","Brazil South","Switzerland North","Norway - East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland - West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia - Central","France South","South India","Korea South","Jio India Central","Jio - India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East - US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Switzerland North","Switzerland West","Germany West Central","Australia - Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway - East","Norway West","France South","South India","Korea South","Jio India - Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '13285' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: AC288DE78910496F8360AC7E41022C80 Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": - "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '130' - Content-Type: - - application/json - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.8960536Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T13:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.8960536Z","modifiedDate":"2023-07-26T05:18:14.8960536Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh","name":"workspace-clitestrglep7rntu2kwnh4j2n4ynh","type":"Microsoft.OperationalInsights/workspaces"}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '891' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh?api-version=2021-12-01-preview - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 60C872D082604BC3A53792FF0EB84F4B Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:13Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.8960536Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T13:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.8960536Z","modifiedDate":"2023-07-26T05:18:14.8960536Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh","name":"workspace-clitestrglep7rntu2kwnh4j2n4ynh","type":"Microsoft.OperationalInsights/workspaces"}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '891' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A00D59BB4B614C5EADCA7AB2B7BBA947 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrglep7rntu2kwnh4j2n4ynh/sharedKeys?api-version=2020-08-01 - response: - body: - string: '{"primarySharedKey":"M7sQPN95hZm/JLR4Ei/aANIfk3+F4UHmQeqveNPLzEbc8GYSjEIXmTdrS8LsLRLloMLvjjmru0nShrvUsvIxeA==","secondarySharedKey":"V2LrUpSNUJzjt28E+LlkV+q7NY+MnCGQBzhccx5WEZcX5CJiOTtUxJQ/gS/a1yfs04G+E13Vy66TY7FFJSpkQA=="}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 - cache-control: - - no-cache - content-length: - - '223' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F0706CB6D5CB4AB8B55793AD2B2E61DF Ref B: CO6AA3150218037 Ref C: 2023-07-26T05:18:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": - null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "d7c53aab-e1c1-4453-bd47-e54c2edfc064", - "sharedKey": "M7sQPN95hZm/JLR4Ei/aANIfk3+F4UHmQeqveNPLzEbc8GYSjEIXmTdrS8LsLRLloMLvjjmru0nShrvUsvIxeA=="}}, - "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": - false}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '450' - Content-Type: - - application/json - ParameterSetName: - - -g -n -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - cache-control: - - no-cache - content-length: - - '1537' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' - x-msedge-ref: - - 'Ref A: 750A29BDDA154E168BEF60B7623B31FC Ref B: CO6AA3150219053 Ref C: 2023-07-26T05:18:16Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 14B2035408C04446A99C799E8BDC8005 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:18:23Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2B04921244274C0E9536F743E1E5A61C Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:18:26Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 80E1801E21824F20A8CF3D0E5A7CFA0A Ref B: CO6AA3150220037 Ref C: 2023-07-26T05:18:29Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 56880768028A4E68BE8536FE69194955 Ref B: CO6AA3150219033 Ref C: 2023-07-26T05:18:32Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B0E4915AC2A2429E95FE905088BA6203 Ref B: CO6AA3150218011 Ref C: 2023-07-26T05:18:35Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7242BF9874804BE290C9AD52C557DD38 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:18:38Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D04DC2A4ABE0467F8D0D2C4E1CBAA01E Ref B: CO6AA3150217017 Ref C: 2023-07-26T05:18:41Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9C3E070A849942B3BA532F58BE872DA2 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:18:44Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6D30A1C68F214140A1B3FBFAAF16D9D2 Ref B: CO6AA3150218009 Ref C: 2023-07-26T05:18:46Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D8C793B4206F4810810FDE6518E5043D Ref B: CO6AA3150219025 Ref C: 2023-07-26T05:18:49Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 76D8C95D08C74461B39B041924DE16B7 Ref B: CO6AA3150217011 Ref C: 2023-07-26T05:18:52Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A56E8DBC93FC44A48905FE74DB53E092 Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:18:55Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: F38DF027292E4768ABC0ED811DB5CB72 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:18:58Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"InProgress","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 22B28D01FC4941D6B5914E1F2082223B Ref B: CO6AA3150220037 Ref C: 2023-07-26T05:19:01Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6b555de2-b478-4e92-a6d6-3e9cbc409646","name":"6b555de2-b478-4e92-a6d6-3e9cbc409646","status":"Succeeded","startTime":"2023-07-26T05:18:22.8458514"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '287' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2C934D96763F49ECA23CEF3C9D54E544 Ref B: CO6AA3150219023 Ref C: 2023-07-26T05:19:04Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1537' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7ECDB64C38B94317B8175ABD50DE0A46 Ref B: CO6AA3150219011 Ref C: 2023-07-26T05:19:04Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": - true, "anonymousPullEnabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:05.0882353Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1344bc4-2b73-11ee-91d2-bce92fa43675?api-version=2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1380' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 1B19E060C72E46288C21D6EA59291751 Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:19:04Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1344bc4-2b73-11ee-91d2-bce92fa43675?api-version=2022-02-01-preview - response: - body: - string: '{"status":"Succeeded"}' - headers: - api-supported-versions: - - 2022-02-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1344bc4-2b73-11ee-91d2-bce92fa43675?api-version=2022-02-01-preview - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8297F0318A4C4434B035AAB9AC4FF4ED Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:19:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:05.0882353Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1381' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CF400342E71F4B69A3A6A325F5E73EC6 Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:19:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr credential show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:05.0882353Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1381' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D2958DFB4B9D415A9522DB8049E633A7 Ref B: CO6AA3150217051 Ref C: 2023-07-26T05:19:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr credential show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview - response: - body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"HcIEKNPWbyLYhVTzDSZ+hI9ZU3DmIb7uGY2VbSoE68+ACRB1QCNT"},{"name":"password2","value":"4fkAGvC5svoSf8caJGZmojVIgi2ltZy7gvuVGohLQm+ACRCVTgNK"}]}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '214' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: DAD48ED657934D70830A419BC8D0D7F3 Ref B: CO6AA3150217035 Ref C: 2023-07-26T05:19:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2A050520F3004666AD5AFFB83AF085AE Ref B: CO6AA3150217027 Ref C: 2023-07-26T05:19:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1537' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: F94B94BA70FB4D7D914CEDC3C3E38327 Ref B: CO6AA3150220021 Ref C: 2023-07-26T05:19:14Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 86FEDE14EBFF4D31959BA6546EDC5972 Ref B: CO6AA3150220035 Ref C: 2023-07-26T05:19:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1537' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3588DEA9A8FB4D5BA2D59BF420C529A1 Ref B: CO6AA3150218049 Ref C: 2023-07-26T05:19:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 26 Jul 2023 05:19:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6D21BCD51DF044CFA1B893297C7F4500 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:19:16Z' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.4684762","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.4684762"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackwave-e4b90dc7.westeurope.azurecontainerapps.io","staticIp":"20.8.141.156","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d7c53aab-e1c1-4453-bd47-e54c2edfc064","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1537' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6CE754BAB9AF442D9F700C6B4323EFD5 Ref B: CO6AA3150217039 Ref C: 2023-07-26T05:19:16Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '234' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: E81F6271AADA4BA0B8203DD056924EDC Ref B: CO6AA3150219023 Ref C: 2023-07-26T05:19:17Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn37hfrmloz6jtk2snhwvzqaiemzxxmjtsqkgngpw3kpqzd4pffzxg3fmwlj7pkbaq/providers/Microsoft.ContainerRegistry/registries/containerappjnakgsbs3bbp","name":"containerappjnakgsbs3bbp","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '5906' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5F11C48473BB48A789610D9F2217793B Ref B: CO6AA3150218039 Ref C: 2023-07-26T05:19:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:05.0882353Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:12.3805711+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - '2022-12-01' - cache-control: - - no-cache - content-length: - - '1381' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8E6B98F88A364297A23B76C79DC26037 Ref B: CO6AA3150217035 Ref C: 2023-07-26T05:19:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9C65088CFB5C4430AEA8499C19030B30 Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:19:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8C6936AD91C341F8992BC31439B5FF80 Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:19:18Z' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview - response: - body: - string: '{"uploadUrl":"https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/source/202307260000/956922e2-b835-4408-b791-448d92eb3baf.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A19Z&sr=b&sp=cw&sig=bZkgKPPtUHwYOBlIUwz1wtkQAzYZQEeYEAgXHFNLBRY%3D","relativePath":"source/202307260000/956922e2-b835-4408-b791-448d92eb3baf.tar.gz"}' - headers: - cache-control: - - no-cache - content-length: - - '351' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 9F881381E4AD4B4A8362142AFF756163 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:18Z' - status: - code: 200 - message: OK -- request: - body: !!binary | - H4sICNiswGQC/2J1aWxkX2FyY2hpdmVfMzc2YmI4ODQ4ODhmNDRkNjllNTU4MjJjZGZkMzllYmYu - dGFyAO09+XcUx5lkN/sL+3jPf0Jl/DYRfsylYwRCkpEBByUcWkm243Ucp2emJDX0dI+7eyRknuO8 - zXr37fGSzcbJyz6v4yQ2NhgL22BuMMa3uQ8JARIIJCEMuhBIIA659quq7pmeQwIcGBNTn/0xre6q - 7/vq+o7q6iqP1+OdVSEtnYelMNYn3RHwcRjv1+fLy0tc0/t+f36BfxJaOikLEDNMSQf2t7uQfyWQ - W4giphzBJf7A9IBvRsH0GbmewsL86YGCyZMEfPPBmwUedDwUFhaOP/7TrgtzC32TUIEY/3ccPEL/ - C/0v9P89C1I0amDTlNVawzMH12NFi0awanoWG5p6O8d/IBAYd/zn5uWmjP/8wty8Scgnxv8dh2VT - JiPkmoNNSVZweK6ua7rhKkKmHsPT2KP5Wm0t9A64x5LyO/NpT0ncYhRqpJhiwj1XuVqj6RHJlDXV - NS2eYIEc0jVDqzE9ZUZ0ITZnazqmqR+TdJXS5wmfpT/wD/wvxqaw/2L8C/svIFv2/3ba/Fuy/7mF - KeM/Nz8/IOx/9uz/12HkuXtRpihaAw7P0wyT+h2uB1zC+Av7L+y/sP8CsgEVUi027vAk8C3P//p9 - uQVi/lfof9H+Qv8LyIL+Z/N+npBRZ0aUrMd//oJA6vxvbkHAL+K/bMDglu2zotAHpkyeFdHCWEGs - Kyygl3DLCv0elXHDHMmUnnBVy6aCXU+iEuRiCV0zWbg2ZXJxnR+FFMkwSlwmXmq6w5Jai3VXKe9Z - xd46fylNlJsxUZmKME2HtFAopus4jBrqZAWjqK6FsGFA5IgatZiOdPx0DBsmJZdbSrnOkmtQDhPW - U1WnNVTy5+XhqVMmW6IXR0vt6BT+MExdU2tLrXSofE5Rsde6h4pDQKd0FqcWp1TsZbctYl5KzSpv - XqnjfQmi2UCsPFpKm2VVgxSNUuFNDZl1OM7ekS/BHqv1MlwxYmHZiCpSo4HC1rw8khPhNpKCWsxk - BHmlmXWSGa85D/BnUsalsLlWQwanxE6GRp0WU8Lq90wUBKqqFKQ8gSMIEFW0RvgDSqLIISaA4YlL - zTmUmygkqdA6RkwxQVRbflp0A6uGbMr1OKkINboWQXhpCEcZQVpBWA2jmIF1w8OJPgzcFS0kKSBD - MMamJ6ZZot1aZQYbkTXDlZSvrKpi4dzq2Ysq5z41d+Gj5ZWLFi6Yu7A6M4l6SZc5Y21CvlxyCUoC - dQFqJc4Uai/eMML/E/6f8P8E3K3+H/xk2f/Ly08d/3l+cAmF/5eV4lMblWne3rOgPgTe3cQJPJXS - M5rOOlE8bVWjYeKIZ44s1aqaYcoh+mjKZFWKYCMqhTCqBuP4GA6WRaO5vtw8X4GH5Y+7bE9UQjrw - CvBsKVSHc+bEdO40lCDfNDRfC9l/JSWz73sWaiqehhZqVSaICKnoSoapT1qUy0EiHZeppgy+CLie - jdXaEqxaT6OxILg43EF1uMGoCFH5LJeYJlyW8CitPGD/oeQPorjbiJahWmzOpJ7HTMQcxpQcQU1T - UJLPikpK0Xc4IU+5sTCmKIv0uZGo2ZiTcGtnJlHS5XrJxOBrSGFNVRpROX2Ng/XihOyl6CmF3ZuZ - QYREspxMOXnGqYlsjmJTsChDFcdZ2I8yFbhek8Nokfp9bOaMT9NRGagsBG6jbDZ6ZlPHVjUf9MDt - Bx9E80wzOltTaQDhqdahP5WHMW1QOVUE6+dZoeSF/yf0v/D/BIzr/5WrYbz065r/8+X7/Wnzf7mF - wv/7Wub/WFe4mfm/eVoEI5o1MQcYluuT5vdCYJjp/J41EZWYIrQmiNz5rtLHsBICStYMoTVlNx9L - uj3RVSyhOh3XlLjqwPAbRV5vWAsZnkjcIYXcXsmIqtj0huhyk9JgTFbC1BEFH5POvBioQTbrUFlV - hWfh3GpEXddir1TqsebJvCB16T274kTYf2H/hf0X9j9h/7M+/+ML+NPnf/KE/c+W/b+tU0C3MM+T - NN+ScDsmnm8Zb84jkX/COY9EspxMObM153H3zFMI+y/sv7D/97r9r6BqNdR4h2YAbvj9R0F+mv33 - ifc/X0/8b3WFm5kBsJKiCg2MXaM1DQBRfumstORWeM+WpTxi0BUcssEmD+iSCr7KhS/xMWQTf8/g - dh5IRxlpz924ckLE/8L+C/sv4Jtn/2/3DMAN4//c1Pn/vAJfvrD/91L873Q7vtoMgJPChHMAzoQ5 - mXNne+3D1zcLIOy/sP/C/t/r9r+qTtJx+E59Bnrr33/C+A+I7z+F/hftL/S/gKzp/6fmS41azLzd - 08A3iP/y832B1P3/8vxi/jdb8V/xd+Ysml39eMVcRFudfaYJv0iR1NoSF1Zd7A6YB3t5VgSbEgpB - jzGwWeKKmTXu6S7kTXpKY8ASV72MG6KabrpQiK7XViF1gxw260rCuF4OYTf7YxqSVdmUJcVthCQF - 9JDH56Bm0unjDPPJyJ0WXRZ7eWIrpyKrSyBIVEpchtmoYKMOYxCEryT7mVeRg96gppmGqUtRb1g2 - TG/IMBK3PBFZhWFgOESZmCDNTeeueSbJiLqlaBSrYXc91g1ZU0tc9EOEmyaXFjrzRDdDvdhrNVZx - UAs3xtfeMfvu/BZWleKL9eAyKOmI/7jx0qgEpI2IfcOEGFfB9ANIx01Frq0zUbDW3VAHxUZBTQf6 - 7qBmmloE/lrqNuogQG9AkaA7z1WaHD47FwrSriHJamKZYFJCKVlEd1AH0awa0LFU4uLX9E1CiYsv - Y3GVpvcMKRPtYAxkVVMY8LLqLmQ2RoEkT+NCYeh87qBhPaZSK4oUNbDjiaTX0vHgsQglUtCPR920 - mLqmxBlVxaJ0aODwbD40XOkC2sDy80bB4RJXjaTEqSpSkPagaiYVbRm5lm/JVZqZXLEBVDKX2C2H - aL5iL02Sqbq8vC4yPXI0Z0rpUfyCdii3rEK3x+4aBS9Fi0HzyjWNbks3uIPYbMB4fNFjSgoP2oEp - JXetrjW4/eNltEabI7MbOmxkouRpXc/NRqv1zbq+5EYdcB5b0CpNJBBooLtAXmvWy1VqXXxloYu9 - MSVjp+GLaye6V+wFgeMf2CfpqRvqieII3EIwrqAw9NJlp45m0DqzKkFjYv0h0IrOabhiL80ZF4AL - Z/1VA/YA6zZRS8eZWhRZD1gNR2IwjJOkuhn19t2QFm2ciaiGymDM4BY06FdqNWf9Fnu5oIkSGSFd - jprI0EO2GVz8dAzrjdwG8mtm/BYbTBmw5KXjZk6xoYudJjQYU8MKvkliiy3zuXgi++akwanMkhok - 2US8ZatwiCq/MqNRDeW4qlhKwzWNbRshg39bhJjunEptpGUbocNRn+fe9f9F/C/ifxH/i/g/Q/xP - g41sxP/+QF7q+q8Cv0/s/5St+N/7AKqA8A58dAODn66FYnRTG2uvIRPd3GdX3pAiUy/ekMPYyyy/ - rNa6aRwJ9l+usbYOmjKZbypE13sZiAZfmloj18Z0vlEOXROma4vBjNNlYdx/YNvpMBqNyKBShVAD - /a7LMLBpeNADXuoKSB5nfMjfrLK41M3eRBchlW49pLDXtMxnkyB8VYsQ/0CN3W4A5w6yY2lJEWI/ - kEaxv2yTOEkIZjS9CN1PX2eEQvZDT9BU3VFdjkh6Y3K6mpoaRjsohZZAkALlcduP/MEADuXyp9yt - jD+ZHvBLCeLUm4/KClSXx3bsPRL9NB5PQ86HRh0E26WJRLdfEof7u8yRGv4uQv7oUmRoihxG9+MC - +h/P5UmeFnBm47fGzcnyxicRrIz230XIhzy5BTqOIE8h+9Frg1KObxri/3t8BVNtMjxqhSqjm025 - +XpCTq9GY/31GegefqDBaoCFp3WYzm0UIVmtw7psxgWynH6WOarRba006ENSEMSHEMCqQV4qH+9T - dIILqPt8/zAzQ5dsAC85nWvAF106M2ubYAv/T/h/wv8T/h/3/x4FuxhmltqKnivoJnaS8pe9Ebrh - +v9Ayvv/XJpB+H/Zev8z3pyQuz7eHZKmh6zbGad2boaYO6ZqQVOPGeDEpNF0PMtEX4xYYf/F+Bf2 - X8DttP9P0Rfs5RH6RtK4/R8B3sj++wMFqes//P4CYf+zZP9n8fX9qa+gpkyedeOl/LOkcLhaqp2H - lShExg9MG/8rgXgqQxhxYf+F/Rf2X8DdZf+r6I71d2ILgBvZf1/6/s8F9PwnYf+zY/+tD9H4yz/6 - Yb/1HtA1U5zFKOy/sP/C/gv4xtp/XavVpcjt3/Tv5u2/31eYGv9D+C++/8gK1Es6Yhvmsq/ZeYhv - H/Tkma1jycQP8cc5kl5r8BMIvF5UFg4jA+v0Ow7DPt8qvtbVQ1+7s0yeKiuNBzIkNgrI4XQocyka - BcZ2csYrJ85ltrU8hB/5NK+6usI+AwxF5Sim782BFz0E7Dv0iKW5iTObPOWG44SmnKmJE8FowkcM - PNc+fWqeRJeZ6DkufgqKa6r1MT+wp0dmhfmZ12heVXUVqpeUGEaygfJ8KCw1Gh70uBZDEakRNUgq - W7QSqqNnmvG1LHStS1TXwjG2LBUZIaxKuqwZ09hCG3tdjbRE8kQMay0NXUrjrjNM+xQsS9h5cCcn - vqTBvkkJVOKwrPN1ryyB9ayKrZR5WFbidW09qAS/TlZrk2+Wxcw6TZefkeJk+KMFUjStzej9yhhP - JdSn8P+E/yf8PwF/zf5fFOumfCcPAf8K+z/k5ReI/R+E/hftL/S/gCzpf0WKqaG6Kn5WruFZbGhq - duL/QG7q+C/IzRPv/7MCLCh2QZRaQ2NFV5G9K50r9Y1/4hE8DGmRCITNC6UIhvuuCv7RhmtaPAHv - Sw/pWoOBdUhCP99MPHWcrfyodbSy4aQPSTIfz0yZOcL6+EfzzyZohzUT4miIUBdgw6Bxaxp3x1HW - j+gKJWmH4uy86TrNMIsKQRXOpLeT7haAYbJ42hxd5eVVaO7SqA7cJqoiSGan+vpqKUX0OVpoCeM7 - rtRWipuVmD+1KnVZVagOR/CzUIPLrFmgeVCJzxbZf1VouvmsgzbbLNGoK1MU+iS93WIGrqqab92O - b5hol8cly4atuxzduEFWwyAsneGgp0TyZndZXwLbFSGpmtoY0WLpyRwSUAaZGjpzd0rqN/m+GXkB - R0kNgxUR0ubn5xX4nGXJ9g6Qwv8T/p/w/+5dSFvYFzLoJ5i3ffxP+P4nz5d2/oNfnP+UFSi2fDdU - FV5S4kqs3gS3wgO3PNA3XNZuG8VWrND4fV2LRe1tPKrZvkcP6+AxNGj6klJwvgIeX7E39b6VnJ5r - TT2ZUqzSn2Jv/IaVoDxCzalsPkIXpRrxZCm3rcSPGGzXDx2bRnm4tCA/EPYXhHPdwenTZ7jzQ8Fc - 93Qpd4a7IOgLYakQ5wakGcXe5DwWIe7ozOHverjoi6pK58tqbGmxN/PDpJzUe7YOpaYHS6bfZBXo - Ta1BdrfcxJGkKq2QQkvAc63ENVjHagijcjWkxMLY2T6PykZMUqrMWFjWPGXPxHTsmW2/fjM81Zqm - wL9MVMOFHrV3UfF7/IWeXHsXMqhVB2u6GYrVGcR3NvcMCP9P+H/C/7t3oaGhQdc003snedz6+x9f - Yb5fvP8R+l+0v9D/ArKh/+n+xXeP/vcX5An9L/S/aH+h/wVkTf/b+9ffifE/0fd/eb7c1PnfXHH+ - b3aAHfWQth1evr0FHT0WGIdlCeVEZNVt7WdXGJgeXTqV50rkT6YQYBT4C01KJpEusXOejhWJbmTI - ElL69hZ41oZ5fP8+LWzt1xeR9FpIZG+xZ++TJ8awsP9i/Av7L+Avsf81Uj09AMQD/9yR8T++/ffn - 5gdSz3/K8xXmCfufHfjWpL+ZhBD9RZNW3Ddp0nfh3n338b/rvj1p0l64zoF7kGTSrEn8PoWf35eR - 3N8B/v2tYk5OztS3VjdteaupadPqpjc5vvnGptWrVm5qemPFpqaVr29qWvH6prdWvr5hNcUVrwEu - d+BrG/7l58/9Z9uxo+To4RZyhGEzxxYbD3FsPkRaGR6M47bNm8jprk6G3Z2nSPepk6Tr5AnSdeI4 - 6TzeBniMdLYdJZ3HjpBTx1rJqaOHAVuS8I3lr2zv6e4iY6OXyHWGI+T6ZYrD5NolwJGLgBcYXh0e - AjzP8eIgOdZ8gHx5/RoZu3aVjF29QsaujHIal618w5DnIqS9MAg4QK4M9afhlnVrGf/rVy6Toc49 - pGfnH0nPrj+R0zv/QE5//gdyYv8W0n70SHL9WHXz3tbNjP+XlP814H/V5j8CsltyU5mTZEjIcRWu - t6xP8O/Z9Wey9/ezyb4Xv0/2/G8Z4ENk37v/wepmzK6b0UTdtLW2cP6OOhjoPUsGzn1BBs6eIf1f - 9JD+M92kv6eb9J3uIqdPtMfl4L+DwP9d4N8NdXeFnNm9nOx/8QfkwMsV5NCrP2J4YPMLTDaOzjYa - Ju1HKP/rSfwHe8+RkaHzTIbh8/0gw+mEDD1dvC4cuGXDuu09p7tZ3jN7lkPZy0nzaz8mB/6wkOx/ - 6Ydk//pfOvjbMvB6YPzHrlttwGUY7OslIxc4/5HzA6T/bI8lA5eDtocTt25cz/lD+32x93Vy4KX5 - pOX1n3D+/zef8ad1w3GUDA/2QV2eIr3dJ8nezz6y+Cfq4NLFCyDDuUQ7ONsCkPfnBG7duGF7T89p - Mnb9Kvli3wrGt2XFT1kb7H9pAdm/4Ve8b1s4PNgP/DtJL8iw7/OPgf9Yog5SxwKtL6s/2mPq+iUH - wt/bNm20+F8D/iuh/AvIYSf/9b/iffuaxR/atK+nk9XB3s8/IZcvXbJwhFweGSaXhy+SSxShHi5d - HCKXLgyx9hgZGsyIa995m/Mfu0bOHlhFDv3pEdK6qoYc+vOj5OAfq8iBjf/D6oYhlG0Yxk3fmU4m - wz7gf/78IDk/SHGA40A/Od/fTwb7+zhCf+B4jvXNAQfSv99d8872Mz09rB7PHniTHHz5H0nryhA5 - BLwPQh0c2PjfrG44Uv4DSfyPHgHdcKSVHGm18bClJwBbWkhrHJsz4vJXXonzP3dwNWl55XFytGkx - aVn+T6T5lR+RgzD+aN0wBBmGoc76znQxGfbt/ISchrG7d88ecsSSwdkfneNizO4blq6i9dR16hRp - WrVq+5kzPQQykl7K/8+PkaNvyqTl1cdJM1wf3PSC1cd4PxuG9uyDcURx785PGX8bu+PYxbHLgfR+ - V1carm5qAv5nyJdffkl6D71NDr/6Y3JsdYS0vvYTkOEJcnDL7xz8x6AvAX8Yz30wnvfu/IycPn06 - DdesWUMOHDiQhGua3iDN+3YzndnW2kzaQI//5je/edHj8dyf4P8OOfzKE+RY0xImB22LQ5t/y+qG - YoJ/D5Oh9dABqPvdDHeBLLs+57h544b49a7PPyW7PvuU7Pn0Q3Kx/yy3aZZtWLdu3b9R20/5U+hv - WUuOvh4k7W/r8BsiR177KWne8nsmG8Mk/lyGYRhbFHmbdMX7JtURtp6guqq3uwP4n0vYVcANGzYk - 8e9rXkNaX/0JaVutkSPLfwrXT0L5f5fgDzhy0cm/h8kz4ugTSTLE5TjF5Bge6E2yX5s2bUop/zpy - bAUmJ9Y0kBPvNrLfIx+tIAn4EnTLBabT0/izPjGxDMODvUk2dMvWLcn8m98lR1+TyPG3dPZ7ZPlT - pHnz75P4j1y8SPoo/7Op/Hl79H3RnZAD7J2tKzn/viQ7um3btpTyrydtK2tZudvekMkxuG7Z9n/E - CVS39p3r4XUASNsj0SZ8XED5x0COMVYPFv/ebsb/GvC/AngN+F9777330uv/9TA58U4MeNew65at - L6bxt3kz/sOcf/+5M2nI5QFZejj/iyn1//7725P4D7RsIG0r7PIvZnWRqfyM9lmOI9AfKGbkf47K - SNuE1QfT3Xb9j0L/27FjRzL/w8B/pUw61jSS9lVLWBu0bHuJ3C4YA718DWzo6OgouXDhAvnggw8y - lJ/zP/6mCjKAHvxgecby3wzS9umFNjgL/fAc9McLYDuugB9zEfpwb28v+fDDDyn/v02UfyNpf0Mh - J1brTIaT635G2nat+0r8KW/Kk2LXyePkJMQCZ8HO9INt7gK9v2/fPnLs2LHngOS3nPXfDuU/vkoh - 7dAO7SsXp9X/zfCnZbZ5U/zg/e0E+jrZvn072bx5M7tua2vbTnk7+V/qbWdtQOuBykJ/Ow59dOv8 - z3D+9Jfi++9tY7rz8uXL5FRnJ+ns7IzzdvLPBBM9Gw+uQz+z8erVq+Tjjz8ml8BHO3nyZBpvinCP - DAwMZMSOjo5b7+dgpyhS3iMjI7SfUb7UNqfxvhHu37//uVvlT+v6Gvg9lDftbzt37qT+xy3zptjc - 3PzcIPiX49VPJqQ8z507R3rArzsFPlZ7e/uEvL/uuQw6T3GfNVdhz1PM+nZ6uuaDB36xb8/u5/ft - 3mXhzuf37qL4+fPbt23dtHf3ruN7dn5+fPdnnxzf9clHx3d//GHbro93tO36aEfb+rdX7xga6CPD - Zw6ToVM7ycCp/eQcxIRnIS492w19o/Mk802pfqa+AYv1IT61Y+WO1uaOIajbtrUxiEsgLlulJsWi - fRBn0fzUFg3S2IvaB6A/BOOR0uk4erhjCOLB9nVLyUGILfavjACvUXIVeFG/5Cykpf7yKMQw5/t7 - GQ0ar9Fn1Fc72Xa0Ywj0Z/v6ZeQQ+OX731BZPDQKMRz1bbpPdZCrlN7oZXIFYqErQGcU7BJDkOn4 - 0daOC0ND5MTG58C3h/j2zadZPEHtELXRxyBeYD4xjJNu6DNdbC6lI47gS3ZcAD/j5OZfkNYVEjm0 - OgZj7Dq5cvkS83eOgl/b3tbG9MUQxERDgxxpTNQPun73rl0d1Oac2vKv5MjKMGl+aynzJ6+ATqI+ - w+Hmg1Ycc5h8sON95tN++uEOcqazg/SC/Xjhty9UUbvRue3fybFVYBffXsbG2RUoL/U9aJ2dhxjL - 9jlsv3MU6p6259q1a+fS/F3v/Rdpf+tpcmTd82ys0jqjtoLlB4z7b5bfMgr9gLbx+g3rWf7u935J - 2ps00rrm51b+Kyz/ELQT7V+WH8R8n16efwz6ydjmzZt4/u2/IsdXA/+1/xzXlSOg00ehzUYhRr5k - xa/Mr4B2uzp6iT3bunUry396+6/JibdipH3Lr+P8x7N9p6HuaGxKY5/du3fPZnZ3XxM5/f6vScdH - fxo3v2239u3bS0D/kIMHD75M9QTVK1SPU6TXE+l/auePQGwKevflTDoHaJbZtFJxeHiY6a/W1taX - 7yY9Jd7/ifd/4v2fgLvn/d/iu2z/pwKx/5PQ/6L9hf4XkC39z5Z/LjbuzPifcP1nfur6j9xAQKz/ - zArQ87+9WTz/G5jd5iPAra2iH9Oh+6JGLaajH0j1Ej+/FIiH6Q7RYpwL+y/Gv7D/AlJhui/PXyAF - Z+QXBnF+aAaePj2Aa6SasD8vWBgKFwSfSmxlcqfsPwR7/pTxH6BHQgj7nwW4vyr9KIIQ1IkWkZ/B - 8QMdqC0GF0FXUZ3WwI45sJNwixvGwVht4vwHZrBpSr5LDeLb1KCYQc+KoCY+0am4lZeVMCckR+iW - jcxFqJEME1uka8E5YIb+4cpFC1AkpKc4InzTR8sfKQp4fKisCgXBpZky+bFFlT+cU16JvFI0OmXy - 3B9VLKqai6b74pf5+Xk3JmyEl8SpUmEdZA09NGXy7EUVj6MnXONspuWahlwe15NTJlc+shBxikiH - pOA2wQPveLkssh7kSbBzUX5ejyuJFq+/cbkjdwhVYu7huTVWEV6rFFa5OQEonLUFYxJ1696t0bcz - eaNF9HyJaJRu/VjCNl1McKUZgGmNrEpKakOxorvdNboWKYkTc1KGSpm7sLry8YpF5Quroe65tLSq - 0+QMK4rrSaHqBQgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQ8A2D/wdhpg4y - ABgBAA== - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '7471' - Content-Type: - - application/octet-stream - User-Agent: - - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-version: - - '2022-11-02' - method: PUT - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/source/202307260000/956922e2-b835-4408-b791-448d92eb3baf.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A19Z&sr=b&sp=cw&sig=bZkgKPPtUHwYOBlIUwz1wtkQAzYZQEeYEAgXHFNLBRY%3D - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - +MFC0cfPMWVkc90Pg4Y7jQ== - date: - - Wed, 26 Jul 2023 05:19:19 GMT - etag: - - '"0x8DB8D97DD8A30AD"' - last-modified: - - Wed, 26 Jul 2023 05:19:19 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-content-crc64: - - dR5f9QQBrkc= - x-ms-request-server-encrypted: - - 'true' - x-ms-version: - - '2022-11-02' - status: - code: 201 - message: Created -- request: - body: '{"type": "DockerBuildRequest", "isArchiveEnabled": false, "imageNames": - ["runtime7.0:20230725221920510290"], "isPushEnabled": true, "noCache": false, - "dockerFilePath": "80315ab947be4c9e886efafd13b7cd5b_Dockerfile", "arguments": - [], "platform": {"os": "Linux", "architecture": "amd64"}, "sourceLocation": - "source/202307260000/956922e2-b835-4408-b791-448d92eb3baf.tar.gz"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '370' - Content-Type: - - application/json - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-26T05:19:20+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:20.0632149+00:00"}}' - headers: - cache-control: - - no-cache - content-length: - - '523' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: FC86D4C65E4D469F9BFA44230A281859 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview - response: - body: - string: '{"logLink":"https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D"}' - headers: - cache-control: - - no-cache - content-length: - - '228' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: C15C7DDE2FB84AC590EA9758C9F48BA5 Ref B: CO6AA3150217053 Ref C: 2023-07-26T05:19:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:23 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - etag: - - '"0x8DB8D97DE529312"' - last-modified: - - Wed, 26 Jul 2023 05:19:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:23 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - etag: - - '"0x8DB8D97DE529312"' - last-modified: - - Wed, 26 Jul 2023 05:19:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:23 GMT - x-ms-range: - - bytes=0-4095 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "2023/07/26 05:19:21 Downloading source code...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-range: - - bytes 0-47/48 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - etag: - - '"0x8DB8D97DE529312"' - last-modified: - - Wed, 26 Jul 2023 05:19:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:23 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - etag: - - '"0x8DB8D97DE529312"' - last-modified: - - Wed, 26 Jul 2023 05:19:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:25 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '102' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:23 GMT - etag: - - '"0x8DB8D97DF5229F0"' - last-modified: - - Wed, 26 Jul 2023 05:19:22 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '2' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:26 GMT - x-ms-range: - - bytes=48-4143 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "2023/07/26 05:19:22 Finished downloading source code\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '54' - content-range: - - bytes 48-101/102 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:23 GMT - etag: - - '"0x8DB8D97DF5229F0"' - last-modified: - - Wed, 26 Jul 2023 05:19:22 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '2' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:26 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '102' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:23 GMT - etag: - - '"0x8DB8D97DF5229F0"' - last-modified: - - Wed, 26 Jul 2023 05:19:22 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '2' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:28 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '732' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:26 GMT - etag: - - '"0x8DB8D97E0BD43E4"' - last-modified: - - Wed, 26 Jul 2023 05:19:25 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:28 GMT - x-ms-range: - - bytes=102-4197 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "2023/07/26 05:19:23 Using acb_vol_344c0834-f115-44ca-9405-5742214eeb94 - as the home volume\n2023/07/26 05:19:23 Setting up Docker configuration...\n2023/07/26 - 05:19:24 Successfully set up Docker configuration\n2023/07/26 05:19:24 Logging - in to registry: containerapp000004.azurecr.io\n2023/07/26 05:19:24 Successfully - logged into containerapp000004.azurecr.io\n2023/07/26 05:19:24 Executing step - ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2023/07/26 - 05:19:24 Scanning for dependencies...\n2023/07/26 05:19:25 Successfully scanned - dependencies\n2023/07/26 05:19:25 Launching container with name: build\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '618' - content-range: - - bytes 102-731/732 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:26 GMT - etag: - - '"0x8DB8D97E0BD43E4"' - last-modified: - - Wed, 26 Jul 2023 05:19:25 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:28 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '732' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:26 GMT - etag: - - '"0x8DB8D97E0BD43E4"' - last-modified: - - Wed, 26 Jul 2023 05:19:25 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:31 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1428' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:28 GMT - etag: - - '"0x8DB8D97E250795A"' - last-modified: - - Wed, 26 Jul 2023 05:19:27 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '4' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:31 GMT - x-ms-range: - - bytes=732-4827 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "Sending build context to Docker daemon 35.33kB\r\r\nStep 1/17 : FROM - mcr.microsoft.com/dotnet/aspnet:6.0 AS base\n6.0: Pulling from dotnet/aspnet\n9d21b12d5fab: - Pulling fs layer\n20307483facf: Pulling fs layer\n51885b20fc11: Pulling fs - layer\n573f002b5cb0: Pulling fs layer\nb70e22fadac0: Pulling fs layer\n573f002b5cb0: - Waiting\nb70e22fadac0: Waiting\n20307483facf: Verifying Checksum\n20307483facf: - Download complete\n51885b20fc11: Verifying Checksum\n51885b20fc11: Download - complete\n573f002b5cb0: Verifying Checksum\n573f002b5cb0: Download complete\n9d21b12d5fab: - Verifying Checksum\n9d21b12d5fab: Download complete\nb70e22fadac0: Verifying - Checksum\nb70e22fadac0: Download complete\n9d21b12d5fab: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '696' - content-range: - - bytes 732-1427/1428 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:28 GMT - etag: - - '"0x8DB8D97E250795A"' - last-modified: - - Wed, 26 Jul 2023 05:19:27 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '4' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:31 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1428' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:29 GMT - etag: - - '"0x8DB8D97E250795A"' - last-modified: - - Wed, 26 Jul 2023 05:19:27 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '4' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:34 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1541' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:31 GMT - etag: - - '"0x8DB8D97E39E24A9"' - last-modified: - - Wed, 26 Jul 2023 05:19:30 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '5' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:34 GMT - x-ms-range: - - bytes=1428-5523 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "20307483facf: Pull complete\n51885b20fc11: Pull complete\n573f002b5cb0: - Pull complete\nb70e22fadac0: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '113' - content-range: - - bytes 1428-1540/1541 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:31 GMT - etag: - - '"0x8DB8D97E39E24A9"' - last-modified: - - Wed, 26 Jul 2023 05:19:30 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '5' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:34 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1541' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:31 GMT - etag: - - '"0x8DB8D97E39E24A9"' - last-modified: - - Wed, 26 Jul 2023 05:19:30 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '5' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:36 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2123' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:33 GMT - etag: - - '"0x8DB8D97E55C8261"' - last-modified: - - Wed, 26 Jul 2023 05:19:33 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '6' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:36 GMT - x-ms-range: - - bytes=1541-5636 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "Digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\nStatus: - Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> e21be194dede\nStep - 2/17 : WORKDIR /app\n ---> Running in d42a2b98365e\nRemoving intermediate - container d42a2b98365e\n ---> 28ded58e1ef3\nStep 3/17 : EXPOSE 80\n ---> Running - in 4ea26b4974d9\nRemoving intermediate container 4ea26b4974d9\n ---> 7fa86d46a231\nStep - 4/17 : EXPOSE 443\n ---> Running in b620cdec3fc8\nRemoving intermediate container - b620cdec3fc8\n ---> 583c4d757501\nStep 5/17 : FROM mcr.microsoft.com/dotnet/sdk:6.0 - AS build\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '582' - content-range: - - bytes 1541-2122/2123 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:34 GMT - etag: - - '"0x8DB8D97E55C8261"' - last-modified: - - Wed, 26 Jul 2023 05:19:33 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '6' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:36 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2586' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:34 GMT - etag: - - '"0x8DB8D97E6939BBF"' - last-modified: - - Wed, 26 Jul 2023 05:19:35 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:36 GMT - x-ms-range: - - bytes=2123-6218 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "6.0: Pulling from dotnet/sdk\n9d21b12d5fab: Already exists\n20307483facf: - Already exists\n51885b20fc11: Already exists\n573f002b5cb0: Already exists\nb70e22fadac0: - Already exists\n3daac94afcbd: Pulling fs layer\n4cda43ab38c0: Pulling fs layer\naa0c354e371d: - Pulling fs layer\naa0c354e371d: Verifying Checksum\naa0c354e371d: Download - complete\n3daac94afcbd: Verifying Checksum\n3daac94afcbd: Download complete\n4cda43ab38c0: - Verifying Checksum\n4cda43ab38c0: Download complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '463' - content-range: - - bytes 2123-2585/2586 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:34 GMT - etag: - - '"0x8DB8D97E6939BBF"' - last-modified: - - Wed, 26 Jul 2023 05:19:35 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:37 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2586' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:34 GMT - etag: - - '"0x8DB8D97E6939BBF"' - last-modified: - - Wed, 26 Jul 2023 05:19:35 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:39 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2586' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:36 GMT - etag: - - '"0x8DB8D97E6939BBF"' - last-modified: - - Wed, 26 Jul 2023 05:19:35 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:41 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2586' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:38 GMT - etag: - - '"0x8DB8D97E6939BBF"' - last-modified: - - Wed, 26 Jul 2023 05:19:35 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:45 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2643' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EA5C7025"' - last-modified: - - Wed, 26 Jul 2023 05:19:41 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '8' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:45 GMT - x-ms-range: - - bytes=2586-6681 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "3daac94afcbd: Pull complete\n4cda43ab38c0: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '57' - content-range: - - bytes 2586-2642/2643 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EA5C7025"' - last-modified: - - Wed, 26 Jul 2023 05:19:41 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '8' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:45 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2643' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EA5C7025"' - last-modified: - - Wed, 26 Jul 2023 05:19:41 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '8' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:48 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3207' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:46 GMT - etag: - - '"0x8DB8D97ED240045"' - last-modified: - - Wed, 26 Jul 2023 05:19:46 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:48 GMT - x-ms-range: - - bytes=2643-6738 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "aa0c354e371d: Pull complete\nDigest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\nStatus: - Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> 7d987f8db548\nStep - 6/17 : WORKDIR /src\n ---> Running in 5a6b3739f312\nRemoving intermediate - container 5a6b3739f312\n ---> 951d0d52ec27\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", - \".\"]\n ---> 594ac57a1c76\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\r\n - ---> Running in 0d0b4f0ccc42\n Determining projects to restore...\n Restored - /src/TestWebApp202305.csproj (in 676 ms).\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '564' - content-range: - - bytes 2643-3206/3207 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:46 GMT - etag: - - '"0x8DB8D97ED240045"' - last-modified: - - Wed, 26 Jul 2023 05:19:46 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:48 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3207' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:46 GMT - etag: - - '"0x8DB8D97ED240045"' - last-modified: - - Wed, 26 Jul 2023 05:19:46 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:50 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3207' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:48 GMT - etag: - - '"0x8DB8D97ED240045"' - last-modified: - - Wed, 26 Jul 2023 05:19:46 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:53 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3517' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:51 GMT - etag: - - '"0x8DB8D97EEE1C1DB"' - last-modified: - - Wed, 26 Jul 2023 05:19:49 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:53 GMT - x-ms-range: - - bytes=3207-7302 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "Removing intermediate container 0d0b4f0ccc42\n ---> 31e3f9ef7338\nStep - 9/17 : COPY . .\n ---> effad2f71d7a\nStep 10/17 : WORKDIR \"/src/.\"\n ---> - Running in 58f2dae4c401\nRemoving intermediate container 58f2dae4c401\n ---> - 140f3fd0560c\nStep 11/17 : RUN dotnet build \"TestWebApp202305.csproj\" -c - Release -o /app/build\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '310' - content-range: - - bytes 3207-3516/3517 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:51 GMT - etag: - - '"0x8DB8D97EEE1C1DB"' - last-modified: - - Wed, 26 Jul 2023 05:19:49 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:53 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3517' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:51 GMT - etag: - - '"0x8DB8D97EEE1C1DB"' - last-modified: - - Wed, 26 Jul 2023 05:19:49 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:55 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3517' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:54 GMT - etag: - - '"0x8DB8D97EEE1C1DB"' - last-modified: - - Wed, 26 Jul 2023 05:19:49 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:58 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4176' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:57 GMT - etag: - - '"0x8DB8D97F36AE38E"' - last-modified: - - Wed, 26 Jul 2023 05:19:56 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '13' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:58 GMT - x-ms-range: - - bytes=3517-7612 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: " ---> Running in d0a5d95054b3\nMSBuild version 17.3.2+561848881 for - .NET\n Determining projects to restore...\n All projects are up-to-date - for restore.\n TestWebApp202305 -> /app/build/TestWebApp202305.dll\r\n\nBuild - succeeded.\n 0 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:04.74\nRemoving - intermediate container d0a5d95054b3\n ---> 0416584f522f\nStep 12/17 : FROM - build AS publish\n ---> 0416584f522f\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" - -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in 0b0d9e0cf0ce\nMSBuild - version 17.3.2+561848881 for .NET\n Determining projects to restore...\n - \ All projects are up-to-date for restore.\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '659' - content-range: - - bytes 3517-4175/4176 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:57 GMT - etag: - - '"0x8DB8D97F36AE38E"' - last-modified: - - Wed, 26 Jul 2023 05:19:56 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '13' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:58 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4176' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:57 GMT - etag: - - '"0x8DB8D97F36AE38E"' - last-modified: - - Wed, 26 Jul 2023 05:19:56 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '13' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:01 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4563' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:59 GMT - etag: - - '"0x8DB8D97F4D64B9B"' - last-modified: - - Wed, 26 Jul 2023 05:19:59 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '14' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:01 GMT - x-ms-range: - - bytes=4176-8271 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: " TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\n - \ TestWebApp202305 -> /app/publish/\nRemoving intermediate container 0b0d9e0cf0ce\n - ---> 28fea806e70e\nStep 14/17 : FROM base AS final\n ---> 583c4d757501\nStep - 15/17 : WORKDIR /app\n ---> Running in cf92faf0e08a\nRemoving intermediate - container cf92faf0e08a\n ---> 35b846deaa42\nStep 16/17 : COPY --from=publish - /app/publish .\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '387' - content-range: - - bytes 4176-4562/4563 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:59 GMT - etag: - - '"0x8DB8D97F4D64B9B"' - last-modified: - - Wed, 26 Jul 2023 05:19:59 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '14' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:01 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4563' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:59 GMT - etag: - - '"0x8DB8D97F4D64B9B"' - last-modified: - - Wed, 26 Jul 2023 05:19:59 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '14' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:04 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4768' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:02 GMT - etag: - - '"0x8DB8D97F6096DEF"' - last-modified: - - Wed, 26 Jul 2023 05:20:01 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '15' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:04 GMT - x-ms-range: - - bytes=4563-8658 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: " ---> 657f7abe3d4b\nStep 17/17 : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\n - ---> Running in 4cb77a8591f1\nRemoving intermediate container 4cb77a8591f1\n - ---> ae1b975e19f9\nSuccessfully built ae1b975e19f9\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '205' - content-range: - - bytes 4563-4767/4768 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F6096DEF"' - last-modified: - - Wed, 26 Jul 2023 05:20:01 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '15' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:04 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5462' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F7425BCB"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '16' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:04 GMT - x-ms-range: - - bytes=4768-8863 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "Successfully tagged containerapp000004.azurecr.io/runtime7.0:20230725221920510290\n2023/07/26 - 05:20:01 Successfully executed container: build\n2023/07/26 05:20:01 Executing - step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2023/07/26 - 05:20:01 Pushing image: containerapp000004.azurecr.io/runtime7.0:20230725221920510290, - attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/runtime7.0]\nbeab38b87a74: - Preparing\nfbee0fe5b03a: Preparing\n5ff9c7f01178: Preparing\nd20574564839: - Preparing\nd6b2f81086e4: Preparing\n333872f929fb: Preparing\n4b3ba104e9a8: - Preparing\n333872f929fb: Waiting\nbeab38b87a74: Pushed\nd20574564839: Pushed\nfbee0fe5b03a: - Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '676' - content-range: - - bytes 4768-5461/5462 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F7425BCB"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '16' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5462' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F7425BCB"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '16' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:08 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5462' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:06 GMT - etag: - - '"0x8DB8D97F7425BCB"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '16' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:10 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5526' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:08 GMT - etag: - - '"0x8DB8D97F9798127"' - last-modified: - - Wed, 26 Jul 2023 05:20:06 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '17' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:10 GMT - x-ms-range: - - bytes=5462-9557 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "5ff9c7f01178: Pushed\n333872f929fb: Pushed\nd6b2f81086e4: Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '64' - content-range: - - bytes 5462-5525/5526 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:08 GMT - etag: - - '"0x8DB8D97F9798127"' - last-modified: - - Wed, 26 Jul 2023 05:20:06 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '17' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:10 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5526' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:08 GMT - etag: - - '"0x8DB8D97F9798127"' - last-modified: - - Wed, 26 Jul 2023 05:20:06 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '17' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:13 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5548' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:11 GMT - etag: - - '"0x8DB8D97FB4F5B0B"' - last-modified: - - Wed, 26 Jul 2023 05:20:09 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '18' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:13 GMT - x-ms-range: - - bytes=5526-9621 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "4b3ba104e9a8: Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '22' - content-range: - - bytes 5526-5547/5548 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:11 GMT - etag: - - '"0x8DB8D97FB4F5B0B"' - last-modified: - - Wed, 26 Jul 2023 05:20:09 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '18' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:13 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5548' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:11 GMT - etag: - - '"0x8DB8D97FB4F5B0B"' - last-modified: - - Wed, 26 Jul 2023 05:20:09 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '18' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:15 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '6788' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:14 GMT - etag: - - '"0x8DB8D97FCFD1972"' - last-modified: - - Wed, 26 Jul 2023 05:20:12 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-complete: - - successful - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:16 GMT - x-ms-range: - - bytes=5548-9643 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: "20230725221920510290: digest: sha256:b44e3db222d6286520827259c6dc81f697d224f81fe8e94b45b30fd31f047e71 - size: 1786\n2023/07/26 05:20:10 Successfully pushed image: containerapp000004.azurecr.io/runtime7.0:20230725221920510290\n2023/07/26 - 05:20:10 Step ID: build marked as successful (elapsed time in seconds: 36.472325)\n2023/07/26 - 05:20:10 Populating digests for step ID: build...\n2023/07/26 05:20:12 Successfully - populated digests for step ID: build\n2023/07/26 05:20:12 Step ID: push marked - as successful (elapsed time in seconds: 9.542823)\n2023/07/26 05:20:12 The - following dependencies were found:\n2023/07/26 05:20:12 \n- image:\n registry: - containerapp000004.azurecr.io\n repository: runtime7.0\n tag: \"20230725221920510290\"\n - \ digest: sha256:b44e3db222d6286520827259c6dc81f697d224f81fe8e94b45b30fd31f047e71\n - \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: dotnet/aspnet\n - \ tag: \"6.0\"\n digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\n - \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: - dotnet/sdk\n tag: \"6.0\"\n digest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\n - \ git: {}\n\r\nRun ID: ca1 was successful after 52s\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1228' - content-range: - - bytes 5548-6787/6788 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:14 GMT - etag: - - '"0x8DB8D97FCFD1972"' - last-modified: - - Wed, 26 Jul 2023 05:20:12 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-complete: - - successful - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:16 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/7970ebb271d646c5bc8fb30656df1a4d-3jondwzrdo/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A21Z&sr=b&sp=r&sig=p1xRESEfkV7XGTy92toR1kpnyTK2Nj9pqG%2BVRSGD%2BuY%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '6788' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:14 GMT - etag: - - '"0x8DB8D97FCFD1972"' - last-modified: - - Wed, 26 Jul 2023 05:20:12 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:21 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-complete: - - successful - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", - "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "HcIEKNPWbyLYhVTzDSZ+hI9ZU3DmIb7uGY2VbSoE68+ACRB1QCNT"}], "activeRevisionsMode": - "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", - "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], - "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": - "containerapp000004.azurecr.io/runtime7.0:20230725221920510290", "name": "containerapp000003", - "command": null, "args": null, "env": null, "resources": null, "volumeMounts": - null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": - null}, "workloadProfileName": null}, "tags": null}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '1033' - Content-Type: - - application/json - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:14.9352675Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:14.9352675Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.93.175.112"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230725221920510290","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b?api-version=2023-04-01-preview&azureAsyncOperation=true - cache-control: - - no-cache - content-length: - - '2058' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-ratelimit-remaining-subscription-resource-requests: - - '699' - x-msedge-ref: - - 'Ref A: A27F00389D28489E890AA40B8BF52E31 Ref B: CO6AA3150218047 Ref C: 2023-07-26T05:20:14Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b","name":"e3df15e2-418c-450e-936a-4c461cbc904b","status":"InProgress","startTime":"2023-07-26T05:20:15.7809231"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1AACDDD6B28B4AA0BC2C4117B91CF601 Ref B: CO6AA3150220031 Ref C: 2023-07-26T05:20:18Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b","name":"e3df15e2-418c-450e-936a-4c461cbc904b","status":"InProgress","startTime":"2023-07-26T05:20:15.7809231"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D54D6910695747C9ABC4E737FF4E9519 Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:20:21Z' - 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 --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/e3df15e2-418c-450e-936a-4c461cbc904b","name":"e3df15e2-418c-450e-936a-4c461cbc904b","status":"Succeeded","startTime":"2023-07-26T05:20:15.7809231"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '281' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: BE61F41E41E14B16B74295B70788258A Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:20:24Z' - 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 --registry-username --registry-server --registry-password - --source --source --image - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:14.9352675","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:14.9352675"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.93.175.112"],"latestRevisionName":"containerapp000003--fcsfjeb","latestReadyRevisionName":"containerapp000003--fcsfjeb","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230725221920510290","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '2109' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1C988C550BB04E33881DF47FA0D97A58 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:20:24Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CF8614F2EB36426AA5BE0ECBFE405EC5 Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:20:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:14.9352675","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:14.9352675"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.93.175.112"],"latestRevisionName":"containerapp000003--fcsfjeb","latestReadyRevisionName":"containerapp000003--fcsfjeb","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230725221920510290","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '2109' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8F51910A8CC34D00A90C2D6FBC16F387 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:20:25Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml deleted file mode 100644 index 9410ca19c7c..00000000000 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml +++ /dev/null @@ -1,6813 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: F011C430448447A5B2AFBDC19B85F84F Ref B: CO6AA3150220027 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 17776FC5FE15452A97241F399B8C66DE Ref B: CO6AA3150220035 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E70A4BA8C6904340B7F9479FBC782887 Ref B: CO6AA3150219039 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A71AB605BCB64582A7422EE6A89E8486 Ref B: CO6AA3150217025 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"querypacks","locations":["West Central - US","East US","South Central US","North Europe","West Europe","Southeast Asia","West - US 2","UK South","Canada Central","Central India","Japan East","Australia - East","Korea Central","France Central","Central US","East US 2","East Asia","West - US","South Africa North","North Central US","Brazil South","Switzerland North","Norway - East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland - West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia - Central","France South","South India","Korea South","Jio India Central","Jio - India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East - US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Switzerland North","Switzerland West","Germany West Central","Australia - Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway - East","Norway West","France South","South India","Korea South","Jio India - Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '13285' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8558CF8D4591471BAE6DB6BA11DCF0E1 Ref B: CO6AA3150219047 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"querypacks","locations":["West Central - US","East US","South Central US","North Europe","West Europe","Southeast Asia","West - US 2","UK South","Canada Central","Central India","Japan East","Australia - East","Korea Central","France Central","Central US","East US 2","East Asia","West - US","South Africa North","North Central US","Brazil South","Switzerland North","Norway - East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland - West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia - Central","France South","South India","Korea South","Jio India Central","Jio - India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East - US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Switzerland North","Switzerland West","Germany West Central","Australia - Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway - East","Norway West","France South","South India","Korea South","Jio India - Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '13285' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7D5C3B7707A0432DA46F101CBC241A90 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": - "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '130' - Content-Type: - - application/json - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.5023388Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.5023388Z","modifiedDate":"2023-07-26T05:18:14.5023388Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv","name":"workspace-clitestrgm3mx7nmzviqbm2zt3oysv","type":"Microsoft.OperationalInsights/workspaces"}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '891' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv?api-version=2021-12-01-preview - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 0D5430C18057471282849284DC1E98B7 Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:18:13Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.5023388Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.5023388Z","modifiedDate":"2023-07-26T05:18:14.5023388Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv","name":"workspace-clitestrgm3mx7nmzviqbm2zt3oysv","type":"Microsoft.OperationalInsights/workspaces"}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '891' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:14 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: AC302DDB7C4A4F188F03D205ABA572AD Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:18:14Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgm3mx7nmzviqbm2zt3oysv/sharedKeys?api-version=2020-08-01 - response: - body: - string: '{"primarySharedKey":"LRrLPZYOmzgFxFwjzgccuAAmolTEgmHTma7DALuld6vRilPWqhajIxQbf0bn2IYDtJjEu+b+NMsHtkamMTXTvw==","secondarySharedKey":"cKaI75cLkmdf+G3xDL8OBdI2b2Zonux+dBXB4c5kZ9yHTfcaIM6XeTBNqcLFhupqsQ54UhgTMAJEqCAK9zIZJw=="}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 - cache-control: - - no-cache - content-length: - - '223' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:14 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: D2ECA0996A24490D87DB8E6571FD5D2E Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:18:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": - null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "fccf9640-9d74-4fd2-a75c-431e6be96f5a", - "sharedKey": "LRrLPZYOmzgFxFwjzgccuAAmolTEgmHTma7DALuld6vRilPWqhajIxQbf0bn2IYDtJjEu+b+NMsHtkamMTXTvw=="}}, - "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": - false}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '450' - Content-Type: - - application/json - ParameterSetName: - - -g -n -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - cache-control: - - no-cache - content-length: - - '1541' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-msedge-ref: - - 'Ref A: 86E2D08465C64222BBB6BD791B7B1090 Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:18:15Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3D9FD0FE9C5349F9A2610674211625AB Ref B: CO6AA3150219011 Ref C: 2023-07-26T05:18:20Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 91C34E393E7246478A59850516F8DDDB Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:18:23Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 41492E5D065B4E37BFDAE775F71C5B82 Ref B: CO6AA3150217051 Ref C: 2023-07-26T05:18:26Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 46E1328B331B4256975027D9064DE62B Ref B: CO6AA3150219021 Ref C: 2023-07-26T05:18:29Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 560B069F2CBF4D5AAEEE806B243A29CA Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:18:31Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: EABB387A00C84AC6B23FCBC35C93DBF8 Ref B: CO6AA3150218033 Ref C: 2023-07-26T05:18:34Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 589D2F02C83B4EBBACE83705010276A6 Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:18:37Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2B727B7575164F06B920F78E7202C8F1 Ref B: CO6AA3150220053 Ref C: 2023-07-26T05:18:40Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1078E6C8702E4068858649F090EEFA8F Ref B: CO6AA3150218027 Ref C: 2023-07-26T05:18:43Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2F1FA0A476884884B7D91E4842A17E54 Ref B: CO6AA3150217033 Ref C: 2023-07-26T05:18:46Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: AA138E5CCEAC4D6E893AB7DA68527891 Ref B: CO6AA3150217023 Ref C: 2023-07-26T05:18:48Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9B9F7A4B464A4AB496780DB7E5E8531A Ref B: CO6AA3150217023 Ref C: 2023-07-26T05:18:51Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 546D82F534B340D0B4D9973B6AC40B19 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:18:54Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 53E241D50D24492681F08D7BE519E2DE Ref B: CO6AA3150218027 Ref C: 2023-07-26T05:18:57Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"InProgress","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 347887CB5A914B3DB37B6AEF06D8CD4B Ref B: CO6AA3150218027 Ref C: 2023-07-26T05:19:00Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/88332060-6522-410b-8733-c0238e86fdcb","name":"88332060-6522-410b-8733-c0238e86fdcb","status":"Succeeded","startTime":"2023-07-26T05:18:20.0684657"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '287' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 0679ADE0400B412E8937D7A337D9F4A4 Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:19:02Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1541' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: AEC52C6A8BE8445ABAC2958175FCE95C Ref B: CO6AA3150220045 Ref C: 2023-07-26T05:19:02Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": - true, "anonymousPullEnabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:04.5216079Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f0dfb360-2b73-11ee-a873-bce92fa43675?api-version=2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1378' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 02D5A6CE07AD4EC8B01D55C234645BA0 Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:19:04Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f0dfb360-2b73-11ee-a873-bce92fa43675?api-version=2022-02-01-preview - response: - body: - string: '{"status":"Succeeded"}' - headers: - api-supported-versions: - - 2022-02-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f0dfb360-2b73-11ee-a873-bce92fa43675?api-version=2022-02-01-preview - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B56FEAD254D442E4979567F2F0023D6D Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:19:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:04.5216079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1379' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C921BC8C939E43948620794BF0C21BEF Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:19:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr credential show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:04.5216079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1379' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3C1024ABD18B447CB993B74B1A25F1F7 Ref B: CO6AA3150217033 Ref C: 2023-07-26T05:19:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr credential show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview - response: - body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"ZDCbGv2gjdgvsRQVKQkFGunFf5ePsb15Xx2PEyPYND+ACRC3uMxK"},{"name":"password2","value":"k2GvhPwNuVLNcfUBUKnSmfgmdmo2pJgEnkfpYDJpan+ACRA6uLck"}]}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '214' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 27CBFA20939F458F9EAF80E4346DE8CB Ref B: CO6AA3150218035 Ref C: 2023-07-26T05:19:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5601D5E4F9474560BEE200CCB27309DA Ref B: CO6AA3150217045 Ref C: 2023-07-26T05:19:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1541' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 36A2049109DE4812980F97AFB8C952DC Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:19:14Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7BC250A2F65043A687649BD2D010056A Ref B: CO6AA3150219019 Ref C: 2023-07-26T05:19:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1541' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: DB6AA2DCB2E44FF996C69DE36AF16A30 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:19:14Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 26 Jul 2023 05:19:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 329E24CC3E8E49678C33EA923F87F572 Ref B: CO6AA3150217051 Ref C: 2023-07-26T05:19:15Z' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.0498834","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.0498834"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"gentleisland-84c6c061.westeurope.azurecontainerapps.io","staticIp":"20.86.214.129","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fccf9640-9d74-4fd2-a75c-431e6be96f5a","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1541' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 0BF1A57C832741088225936EE0D15980 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '234' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: EB5B5936B2844026BFA0493B091F8523 Ref B: CO6AA3150219047 Ref C: 2023-07-26T05:19:17Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn37hfrmloz6jtk2snhwvzqaiemzxxmjtsqkgngpw3kpqzd4pffzxg3fmwlj7pkbaq/providers/Microsoft.ContainerRegistry/registries/containerappjnakgsbs3bbp","name":"containerappjnakgsbs3bbp","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '5906' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 76E84978924743A9BB92717FDE2D29A7 Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:19:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:04.5216079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:11.948123+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - '2022-12-01' - cache-control: - - no-cache - content-length: - - '1379' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E8699D6C82E9485AB467D27FFC2655AB Ref B: CO6AA3150220031 Ref C: 2023-07-26T05:19:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D70B24F25B2942C88D8DF9828A980F32 Ref B: CO6AA3150219021 Ref C: 2023-07-26T05:19:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8573F7FC6398499382EDAA1E142AF1E5 Ref B: CO6AA3150217039 Ref C: 2023-07-26T05:19:18Z' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview - response: - body: - string: '{"uploadUrl":"https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/source/202307260000/e1037e99-bbdb-4ae0-9637-13d4afb1b8c8.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A18Z&sr=b&sp=cw&sig=OVyZq2PRyuV647WR1WN3zQQu3GVw5QhDaD6ZfPWUikc%3D","relativePath":"source/202307260000/e1037e99-bbdb-4ae0-9637-13d4afb1b8c8.tar.gz"}' - headers: - cache-control: - - no-cache - content-length: - - '351' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: E8476981B35A4CF5900CEBBA38599665 Ref B: CO6AA3150218011 Ref C: 2023-07-26T05:19:18Z' - status: - code: 200 - message: OK -- request: - body: !!binary | - H4sICNeswGQC/2J1aWxkX2FyY2hpdmVfZDliN2U4NTJhMzdlNDRlY2E2ODk3NTM4NTYxODc1Nzcu - dGFyAO09+XcUx5lkN/sL+3jPf0Jl/DYRfkzPIWmEhSQjAw5KOLSSbMfrOE7PTElq6Oked/dIyH6O - 8zbr3bfHSzYbJy/7vI6T2NhgDLbB3GCMb3MfEgIkEEhCGHQhkEAccu1XVd1zS4ADY2Lqsz+m1V31 - fV9d31FdXSV5JM/MSnnJXCyHsTHptoCXw3i/Xm9+fuKa3vf5Cgp9k9CSSTmAmGnJBrC/1YX8KwF/ - EYpYSgSX+gLTA977C6ff75eKigqmBwonTxLwzQdPDnjQ8VBUVDT++M+4LvIXeSehQjH+bztIQv8L - /S/0/10LcjRqYstStDpTmo0bsKpHI1izpEWmrt3K8R8IBMYd//58f9r4Lyjy509CXjH+bzs8M2Uy - Qq7Z2JIVFYfnGIZumK5iZBkxPI09mqfX1UHvgHssKb8zj/aUxC1GoVaOqRbcc1VotboRkS1F11zT - 4gnmKyFDN/VaSyo3owuwNUs3ME39qGxolD5P+Cz9gX/gfzE2hf0X41/YfwG5sv+30ubflP33F6WN - f39BQUDY/9zZ/6/DyHP3olxV9UYcnqubFvU7XPe5hPEX9l/Yf2H/BeQCKuU6bN7mSeCbnv/1ef2F - Yv5X6H/R/kL/C8iB/mfzflLIrLcias7jP19hIH3+118Y8In4LxcwuHnbzCj0gSmTZ0b0MFYR6wrz - 6SXcskO/RxTcOFu25MddNYqlYtcTqBS5WELXDBauTZlcUu9DIVU2zVKXhZdY7rCs1WHDVcZ7Vomn - 3ldGE/mzJirXEKbpkB4KxQwDh1FjvaJiFDX0EDZNiBxRkx4zkIGfimHTouT8ZZTrTKUW5TFhpep6 - vbGKP68IT50y2Ra9JFrmRKfwh2kZulZXZqdDFbOLSzz2PVQSAjplMzm1OKUSD7ttE/NQanZ588uS - 3pcgmg3EyqeldFhWN8rRKBXe0pFVj+Psk/Il2GOtQYErRiysmFFVbjJR2J6XR0oi3EZyUI9ZjCCv - NKtetuI1JwF/JmVcCodrDWRIljiZoVmvx9Sw9j0LBYGqJgcpT+AIAkRVvQn+gJKoSogJYEpxqTmH - CguFZA1ax4ypFojqyE+LbmLNVCylAacUodbQIwgvCeEoI0grCGthFDOxYUqc6EPAXdVDsgoyBGNs - emKaLdrNVWawCdkzXCn5yqsrF8ypmbWwas6TcxY8UlG1cMH8OQtqspNokA2FM9Yn5Msll6EkUBeg - VuJMofbiDSP8P+H/Cf9PwJ3q/8FPjv2//IL08Z/vA5dQ+H85KT61Udnm7aX5DSHw7iZOIFXJT+sG - 60TxtNVNpoUj0mxFrtN001JC9NGUyZocwWZUDmFUA8bxURwsj0b9Xn++t1Bi+eMu2+NVkA68AjxL - DtXjvNkxgzsNpcg7Dc3TQ85fKcmc+9ICXcPT0AK92gIRIRVdyTD1CZtyBUhk4HLNUsAXAdezqUZf - jDX7aTQWBBeHO6hJbjAqRlQ+2yWmCZ9JeJR2HrD/UPIHUNxtRM+gOmzNoJ7HDMQcxrQcQV1XUYrP - ikrL0Hc4IanCXBBT1YXGnEjUaspLuLUzUigZSoNsYfA15LCuqU2ogr7GwUZJQvYy9KTK7s3IIkIi - WV62nDzj1ES2pGJTsClDFcdZOI+yFbhBV8JoofZ9bOWNTzOpMlB5CNxGxWqSZlHHVrMekOD2Aw+g - uZYVnaVrNICQagzoTxVhTBtUSRfB/nlWKHnh/wn9L/w/AeP6fxVaGC/5uub/vAU+X8b8n79I+H9f - y/wf6wo3Mv83V49gRLMm5gDDSkPK/F4IDDOd37MnohJThPYEkbvAVfYoVkNAyZ4htKfs5mHZcCa6 - SmRUb+DaUlc9GH6z2OMJ6yFTisQdUsjtkc2ohi1PiC43KQvGFDVMHVHwMenMi4kaFaselVdXSgvm - 1CDqupZ45DLJnifzgNRld+2KE2H/hf0X9l/Y/4T9z/n8jzfgy5z/yRf2P1f2/5ZOAd3EPE/KfEvC - 7Zh4vmW8OY9E/gnnPBLJ8rLlzNWcx50zTyHsv7D/wv7f7fa/kqrVUNNtmgG47vcfhQUZ9t8r3v98 - PfG/3RVuZAbATooqdTB2TfY0AET5ZTMzktvhPVuW8rBJV3AoJps8oEsq+CoXvsTHVCz8PZPbeSAd - ZaSlO3HlhIj/hf0X9l/AN8/+3+oZgOvG//70+f/8Qm+BsP93U/yf7HZ8tRmAZAoTzgEkJ8zLnjvX - ax++vlkAYf+F/Rf2/263/9X1soHDt+sz0Jv//hPGf0B8/yn0v2h/of8F5Ez/PzlPbtJj1q2eBr5O - /FdQ4A2k7/+X7xPzv7mK/0q+M3vhrJrHKucg2ursM034Raqs1ZW6sOZid8A8OMuzItiSUQh6jImt - UlfMqnVPdyFPylMaA5a6GhTcGNUNy4VCdL22BqkblbBVXxrGDUoIu9kf05CiKZYiq24zJKughyRv - EjWLTh9nmU9G7ozossTDE9s5VUVbDEGiWuoyrSYVm/UYgyB8JdnPPKoS9AR13TItQ456woppeUKm - mbglRRQNhoGZJMrEBGluOnfNM8lm1C1Ho1gLuxuwYSq6VuqiHyLcMLmM0JknuhHqJR67sUqCergp - vvaO2ffkb2E1Ob5YDy6DsoH4jxsvicpA2ow4NyyIcVVMP4BMuqkqdfUWCta5G+uh2CioG0DfHdQt - S4/AX0vcZj0E6I0oEnTnu8pSw+fkhYK0a8iKllgmmJJQThXRHTRANLsGDCyXuvg1fZNQ6uLLWFxl - mT1DzkY7GANZtTQGvKyGC1lNUSDJ07hQGDqfO2jaj6nUqipHTZz0RDbq6HiQbEKJFPTjUTctpqGr - cUbVsSgdGjg8iw8NV6aADrD8vFFwuNRVK6txqqocpD2ohklFW0ap41tylWUnV2IClewldishmq/E - Q5Nkqy4Pr4tsj5KaM630KH5BO5Rb0aDbY3etipegRaB5ldomt60b3EFsNWI8vugxNY0H7cCUkrvO - 0BvdvvEy2qMtKbMbOmxkouQZXc/NRqv9zbqx+HodcC5b0CpPJBBooDtAXnvWy1VmX3xloUs8MTVr - p+GLaye6V+IBgeMf2KfoqevqiZII3EIwrqAw9NLlpI5m0Tozq0BjYuNB0IrJ03AlHpozLgAXzv6r - FuwBNhyito6z9CiyH7AajsRgGKdIdSPq7bshPdo0A1ENlcWYwS1o0K/Uasn1W+LhgiZKZIYMJWoh - 0wg5ZnDRUzFsNHEbyK+Z8VtkMmXAkpeNmznNhi5KNqHBmBZW8Q0SW2Sbz0UT2bdkGpzKTLlRVizE - W7Yah6jyKzebtFCeq5qlNF3T2LYRCvi3xYjpzqnURtq2EToc9XnuXv9fxP8i/hfxv4j/s8T/NNjI - RfzvC+Snr/8q9HnF/k+5iv8996FKCO/ARzcx+Ol6KEY3tbH3GrLQjX125QmpCvXiTSWMPczyK1qd - m8aRYP+VWnvroCmT+aZCdL2XiWjwpWu1Sl3M4Bvl0DVhhr4IzDhdFsb9B7adDqPRhEwqVQg10u+6 - TBNbpoTu81BXQJaS40P+ZpXFpW72JroYaXTrIZW9pmU+mwzhq1aM+Adq7HYjOHeQHcuLixH7gTSq - 82WbzElCMKMbxehe+jojFHIeSkFLc0cNJSIbTanpamtrGe2gHFoMQQqUx+088gUDOOTnT7lbGX8y - PeCTE8SpNx9VVKguyXHsJZl+Go+noeSHZj0E22WJRLdekiT395mk1PB3MfJFlyBTV5UwuhcX0v94 - Lil1WiA5G781bk6WNz6JYGd0/i5GXiT5Cw0cQVIR+zHqgnKedxri/0vewqkOGR61QpXRzabcfD0h - p1ers/76NHQPH9BgNcDC03pM5zaKkaLVY0Ox4gLZTj/LHNXptlY69CE5COJDCGDXIC+Vl/cpOsEF - 1L3ef5iRpUs2gpecyTXgjS6ZkbNNsIX/J/w/4f8J/4/7f4+AXQwzS21Hz5V0EztZ/cveCF13/X8g - 7f2/n2YQ/l+u3v+MNyfkboh3h5TpIft21qmdGyHmjml60DJiJjgxGTSTnmWjL0assP9i/Av7L+BW - 2v8n6Qv2igh9I2ne+o8Ar2f/fYHC9PUfPl+hsP85sv8z+fr+9FdQUybPvP5S/plyOFwj183FahQi - 4/umjf+VQDyVKYy4sP/C/gv7L+DOsv/VdMf627EFwPXsvzdz/+dCev6TsP+5sf/2h2j85R/9sN9+ - D+iaIc5iFPZf2H9h/wV8Y+2/odcZcuTWb/p34/bf5y1Kj/8h/Bfff+QEGmQDsQ1z2dfsPMR3DnqS - ZhlYtvCD/HGebNSZ/AQCjweVh8PIxAb9jsN0zreKr3WV6Gt3lkmqttNIkCGxUUAep0OZy9EoMHaS - M155cS6z7OUh/MinuTU1lc4ZYCiqRDF9bw686CFg36FHLM1JnNkkVZhJJzTlTU2cCEYTPmziOc7p - U3NluszEyHPxU1BcU+2P+YE9PTIrzM+8RnOra6pRg6zGMFJMlO9FYbnJlNBjegxF5CbUKGts0Uqo - np5pxtey0LUuUUMPx9iyVGSGsCYbim5OYwttnHU18mJZipj2Whq6lMZdb1rOKVi2sHPhTl58SYNz - kxKowmHF4OteWQL7WTVbKfOQosbr2n5QBX6dotWl3iyPWfW6oTwtx8nwR/PlaEab0ftVMZ5KqE/h - /wn/T/h/Av6a/b8oNizldh4C/hX2f8gvKBT7Pwj9L9pf6H8BOdL/qhzTQvXV/KxcU1pk6lpu4v+A - P338F/rzxfv/nAALil0QpdbSWNFV7OxK50p/4594BA9DeiQCYfMCOYLhvquSf7ThmhZPwPvSg4be - aGIDktDPNxNPk85WfsQ+WtlMpg9Jsh/PTJklhfXxj+afTdAO6xbE0RChzsemSePWDO5JR1k/bKiU - pBOKs/Om63XTKi4CVTiD3k65WwiGyebpcHRVVFSjOUuiBnCbqIogmZPq66ulNNFn66HFjO+4Utsp - blRi/tSu1GeqQ/U4gp+FGnzGngWaC5X4bLHzV6VuWM8m0WabJZr15apKn2S2W8zE1dXz7NvxDROd - 8rgUxXR0V1I3blS0MAhLZzjoKZG82V32l8BORciarjVF9FhmsiQJKINsDZ29O6X0mwLv/fmBpJKa - JisipC0oyC/0Jpcl1ztACv9P+H/C/7t7IWNhX8ikn2De8vE/4fuffG/G+Q8+cf5TTqDE9t1QdXhx - qSuxehPcCgluSdA3XPZuGyV2rND0fUOPRZ1tPGrYvkcPGeAxNOrG4jJwvgKSt8STft9OTs+1pp5M - GdboT4knfsNOUBGh5lSxHqaLUs14srTbduKHTbbrh4EtsyJcVlgQCPsKw353cPr0+90FoaDfPV32 - 3+8uDHpDWC7C/oB8f4knNY9NiDs6s/m7Hi76wuqyeYoWW1Liyf4wJSf1nu1DqenBkpk3WQV60muQ - 3a2wcCSlSivl0GLwXKtwLTawFsKoQgupsTBObp9HFDMmq9VWLKzoUvnTMQNLs5zXb6ZUo+sq/MtE - NV3oEWcXFZ/kK5L8zi5kUKtJrOlmKHZnEN/Z3DUg/D/h/wn/7+6FxsZGQ9ctz+3kcfPvf7xFBT7x - /kfof9H+Qv8LyIX+p/sX3zn631eYL/S/0P+i/YX+F5Az/e/sX387xv9E3//le/3p879+cf5vboAd - 9ZCxHV6BswUdPRYYhxUZ5UUUzW3vZ1cUmB5dMpXnSuRPpRBgFPgLTUomkS6xc56BVZluZMgSUvrO - Fnj2hnl8/z49bO/XF5GNOkjkbLHn7JMnxrCw/2L8C/sv4C+x/7VyAz0ARIJ/bsv4H9/++/wFgfTz - n/K9RfnC/ucGvjXpbyYhRH/RpGX3TJr0Xbh3zz387/pvT5q0B67z4B4kmTRzEr9P4ef3ZCX3d4B/ - f7OYl5c39a1VKze/tXLlxlUr3+T45hsbV61YvnHlG8s2rlz++saVy17f+Nby19evorjsNcClSfja - +n/5+XP/2Xb0CDlyqIUcZtjMscXBgxybD5JWhgfiuHXTRnKqq5Nhd+dJ0n3yBOk6cZx0HT9GOo+1 - AR4lnW1HSOfRw+Tk0VZy8sghwJYUfGPpK9t6urvI2OhFco3hCLl2ieIwuXoRcOQC4HmGV4aHAM9x - vDBIjjbvJ19eu0rGrl4hY1cuk7HLo5zGJTvfMOS5AGnPDwIOkMtD/Rm4ee0axv/a5UtkqHM36dnx - R9Kz80/k1I4/kFOf/4Ec37eZtB85nFo/dt28t2UT4/8l5X8V+F9x+I+A7LbcVOYUGRJyXIHrzesS - /Ht2/pns+f0ssvfF75Pd/1sO+CDZ++5/sLoZc+pmNFE3ba0tnH9SHQz0niEDZ78gA2dOk/4vekj/ - 6W7S39NN+k51kVPH2+Ny8N9B4P8u8O+GurtMTu9aSva9+AOy/+VKcvDVHzHcv+kFJhvH5DYaJu2H - Kf9rKfwHe8+SkaFzTIbhc/0gw6mEDD1dvC6ScPP6tdt6TnWzvKd3L4WyV5Dm135M9v9hAdn30g/J - vnW/TOLvyMDrgfEfu2a3AZdhsK+XjJzn/EfODZD+Mz22DFwO2h7JuGXDOs4f2u+LPa+T/S/NIy2v - /4Tz/795jD+tG46jZHiwD+ryJOntPkH2fPaRzT9RBxcvnAcZzibaIbktAHl/TuCWDeu39fScImPX - rpAv9i5jfFuW/ZS1wb6X5pN963/F+7aNw4P9wL+T9IIMez//GPiPJeogfSzQ+rL7ozOmrl1MQvh7 - 68YNNv+rwH85lH8+OZTMf92veN++avOHNu3r6WR1sOfzT8ilixdtHCGXRobJpeEL5CJFqIeLF4bI - xfNDrD1Ghgaz4pp33ub8x66SM/tXkIN/epi0rqglB//8CDnwx2qyf8P/sLphCGUbhnHTd7qTybAX - +J87N0jODVIc4DjQT87195PB/j6O0B84nmV9cyAJ6d/vrn5n2+meHlaPZ/a/SQ68/I+kdXmIHATe - B6AO9m/4b1Y3HCn/gRT+Rw6DbjjcSg63OnjI1hOALS2kNY7NWXHpK6/E+Z89sIq0vPIYObJyEWlZ - +k+k+ZUfkQMw/mjdMAQZhqHO+k53MRn27viEnIKxu2f3bnLYliG5PyaPizGnb9i6itZT18mTZOWK - FdtOn+4hkJH0Uv5/fpQceVMhLa8+Rprh+sDGF+w+xvvZMLRnH4wjint2fMr4O9gdxy6OXUlI73d1 - ZeCqlSuB/2ny5Zdfkt6Db5NDr/6YHF0VIa2v/QRkeJwc2Py7JP5j0JeAP4znPhjPe3Z8Rk6dOpWB - q1evJvv370/B1SvfIM17dzGd2dbaTNpAj//mN795UZKkexP83yGHXnmcHF25mMlB2+Lgpt+yuqGY - 4N/DZGg9uB/qfhfDnSDLzs85btqwPn698/NPyc7PPiW7P/2QXOg/w22abRvWrl37b9T2U/4U+lvW - kCOvB0n72wb8hsjh135Kmjf/nsnGMIU/l2EYxhZF3iZd8b5JdYSjJ6iu6u3uAP5nE3YVcP369Sn8 - +5pXk9ZXf0LaVunk8NKfwvUTUP7fJfgDjlxI5t/D5BlJ6hMpMsTlOMnkGB7oTbFfGzduTCv/WnJ0 - GSbHVzeS4+82sd/DHy0jCfgSdMt5ptMz+LM+MbEMw4O9KTZ085bNqfyb3yVHXpPJsbcM9nt46ZOk - edPvU/iPXLhA+ij/M+n8eXv0fdGdkAPsnaMrOf++FDu6devWtPKvI23L61i5295QyFG4btn6fyQZ - qG7tO9vD6wCQtkeiTfi4gPKPgRxjrB5s/r3djP9V4H8Z8Crwv/ree+9l1v/rYXL8nRjwrmXXLVte - zODv8Gb8hzn//rOnM5DLA7L0cP4X0ur//fe3pfAfaFlP2pY55V/E6iJb+RntMxxHoD9QzMr/LJWR - tgmrD6a7nfofhf63ffv2VP6HgP9yhXSsbiLtKxazNmjZ+hK5VTAGevkq2NDR0VFy/vx58sEHH2Qp - P+d/7E0NZAA9+MHSrOW/EaTt0wttcAb64Vnoj+fBdlwGP+YC9OHe3l7y4YcfUv5/myj/BtL+hkqO - rzKYDCfW/oy07Vz7lfhT3pQnxa4Tx8gJiAXOgJ3pB9vcBXp/79695OjRo88ByW8l1387lP/YCpW0 - Qzu0L1+UUf83wp+W2eFN8YP3txHo62Tbtm1k06ZN7LqtrW0b5Z3M/2JvO2sDWg9UFvrbcfCjm+d/ - mvOnvxTff28r052XLl0iJzs7SWdnZ5x3Mv9sMNGz8eAa9DMHr1y5Qj7++GNyEXy0EydOZPCmCPfI - wMBAVuzo6Lj5fg52iiLlPTIyQvsZ5Uttcwbv6+G+ffueu1n+tK6vgt9DedP+tmPHDup/3DRvis3N - zc8Ngn85Xv1kQ8rz7NmzpAf8upPgY7W3t0/I++uey6DzFPfYcxXOPMXMb2emaz6w/xd7d+96fu+u - nTbueH7PToqfP79t65aNe3btPLZ7x+fHdn32ybGdn3x0bNfHH7bt/Hh7286Ptrete3vV9qGBPjJ8 - +hAZOrmDDJzcR85CTHgG4tIz3dA3Ok8w35TqZ+obsFgf4lMnVu5obe4YgrptWxODuATishVaSiza - B3EWzU9t0SCNvah9APpDMB4pnY4jhzqGIB5sX7uEHIDYYt/yCPAaJVeAF/VLzkBa6i+PQgxzrr+X - 0aDxGn1GfbUTbUc6hkB/tq97hhwEv3zfGxqLh0YhhqO+TffJDnKF0hu9RC5DLHQZ6IyCXWIIMh07 - 0tpxfmiIHN/wHPj2EN+++RSLJ6gdojb6KMQLzCeGcdINfaaLzaV0xBF8yY7z4Gec2PQL0rpMJgdX - xWCMXSOXL11k/s4R8Gvb29qYvhiCmGhokCONifpB1+/aubOD2pyTm/+VHF4eJs1vLWH+5GXQSdRn - ONR8wI5jDpEPtr/PfNpPP9xOTnd2kF6wHy/89oVqajc6t/47OboC7OLbz7BxdhnKS30PWmfnIMZy - fA7H7xyFuqftuWbNmjk0f9d7/0Xa33qKHF77PBurtM6orWD5AeP+m+23jEI/oG28bv06lr/7vV+S - 9pU6aV39czv/ZZZ/CNqJ9i/bD2K+Ty/PPwb9ZGzTpo08/7ZfkWOrgP+af47ryhHQ6aPQZqMQI1+0 - 41fmV0C7XRm9yJ5t2bKF5T+17dfk+Fsx0r7513H+49m+U1B3NDalsc+uXbtmMbu7dyU59f6vScdH - fxo3v2O39u7dQ0D/kAMHDrxM9QTVK1SPU6TXE+l/aucPQ2wKevflbDoHaJY7tNJxeHiY6a/W1taX - 7yQ9Jd7/ifd/4v2fgDvn/d+iO2z/p0Kx/5PQ/6L9hf4XkCv9z5Z/LjJvz/ifcP1nQfr6D38gINZ/ - 5gTo+d+eHJ7/Dcxu8RHg9lbRjxrQfVGTHjPQD+QGmZ9fCsTDdIdoMc6F/RfjX9h/AekQKgwGwjiI - a72F0wvury0I+kJFtd7Q9OmBoL8w6K19MrGVye2y/xDs+dLGf8Bb5BP2Pxdwb3XmUQQhqBM9ojyN - 4wc6UFsMLoKhoXq9kR1z4CThFhd6UKwucf4DM9g0Jd+lBvFtalDMpGdFUBOf6FTcyitqmBNSInTL - RuYi1MqmhW3SdeAcMEP/UNXC+SgSMtIcEb7po+2PFAckLyqvRkFwaaZMfnRh1Q9nV1QhjxyNTpk8 - 50eVC6vnoOne+GVBQf71CZvhxXGqVNgksqYRmjJ51sLKx9DjrnE203JNQy7J9cSUyVUPL0CcIjIg - KbhN8MAzXi6brISkBDsX5eeRXCm0eP2Nyx25Q6gKcw/PrbOK8NilsMvNCUDh7C0YU6jb926OvpPJ - Ey2m50tEo3Trx1K26WKCK80ATGsVTVbTG4oV3e2uNfRIaZxYMmWolDkLaqoeq1xYsaAG6p5LS6s6 - Q86wqrqeEKpegAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAAB3zD4fya9hsUA - GAEA - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '7470' - Content-Type: - - application/octet-stream - User-Agent: - - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-version: - - '2022-11-02' - method: PUT - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/source/202307260000/e1037e99-bbdb-4ae0-9637-13d4afb1b8c8.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A18Z&sr=b&sp=cw&sig=OVyZq2PRyuV647WR1WN3zQQu3GVw5QhDaD6ZfPWUikc%3D - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - /rwKILFO1Wu253DvzgrhxQ== - date: - - Wed, 26 Jul 2023 05:19:19 GMT - etag: - - '"0x8DB8D97DD453328"' - last-modified: - - Wed, 26 Jul 2023 05:19:19 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-content-crc64: - - 6LyMv8ypZXI= - x-ms-request-server-encrypted: - - 'true' - x-ms-version: - - '2022-11-02' - status: - code: 201 - message: Created -- request: - body: '{"type": "DockerBuildRequest", "isArchiveEnabled": false, "imageNames": - ["containerapp000003:20230725221919927360"], "isPushEnabled": true, "noCache": - false, "dockerFilePath": "c5b6debef05849f4b1c7f0c886b25b0f_Dockerfile", "arguments": - [], "platform": {"os": "Linux", "architecture": "amd64"}, "sourceLocation": - "source/202307260000/e1037e99-bbdb-4ae0-9637-13d4afb1b8c8.tar.gz"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '378' - Content-Type: - - application/json - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-26T05:19:20+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:19.5849185+00:00"}}' - headers: - cache-control: - - no-cache - content-length: - - '523' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 999BC267F9BE415795F4ADD04BDCFF45 Ref B: CO6AA3150218011 Ref C: 2023-07-26T05:19:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview - response: - body: - string: '{"logLink":"https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D"}' - headers: - cache-control: - - no-cache - content-length: - - '228' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 4B1A0C2ABA66428A90148B8CA3CAA291 Ref B: CO6AA3150218031 Ref C: 2023-07-26T05:19:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:22 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - etag: - - '"0x8DB8D97DE070733"' - last-modified: - - Wed, 26 Jul 2023 05:19:20 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:22 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - etag: - - '"0x8DB8D97DE070733"' - last-modified: - - Wed, 26 Jul 2023 05:19:20 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:22 GMT - x-ms-range: - - bytes=0-4095 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "2023/07/26 05:19:20 Downloading source code...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-range: - - bytes 0-47/48 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - etag: - - '"0x8DB8D97DE070733"' - last-modified: - - Wed, 26 Jul 2023 05:19:20 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:23 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:21 GMT - etag: - - '"0x8DB8D97DE070733"' - last-modified: - - Wed, 26 Jul 2023 05:19:20 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:25 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '732' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:23 GMT - etag: - - '"0x8DB8D97DFC47B80"' - last-modified: - - Wed, 26 Jul 2023 05:19:23 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:25 GMT - x-ms-range: - - bytes=48-4143 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "2023/07/26 05:19:21 Finished downloading source code\r\n2023/07/26 - 05:19:21 Using acb_vol_4b3cef83-d9d8-40be-b696-ddea3d0cf240 as the home volume\n2023/07/26 - 05:19:21 Setting up Docker configuration...\n2023/07/26 05:19:22 Successfully - set up Docker configuration\n2023/07/26 05:19:22 Logging in to registry: containerapp000004.azurecr.io\n2023/07/26 - 05:19:23 Successfully logged into containerapp000004.azurecr.io\n2023/07/26 - 05:19:23 Executing step ID: build. Timeout(sec): 28800, Working directory: - '', Network: ''\n2023/07/26 05:19:23 Scanning for dependencies...\n2023/07/26 - 05:19:23 Successfully scanned dependencies\n2023/07/26 05:19:23 Launching - container with name: build\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '672' - content-range: - - bytes 48-731/732 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:23 GMT - etag: - - '"0x8DB8D97DFC47B80"' - last-modified: - - Wed, 26 Jul 2023 05:19:23 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:25 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '732' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:23 GMT - etag: - - '"0x8DB8D97DFC47B80"' - last-modified: - - Wed, 26 Jul 2023 05:19:23 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:28 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1428' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:26 GMT - etag: - - '"0x8DB8D97E14ABB45"' - last-modified: - - Wed, 26 Jul 2023 05:19:26 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '4' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:28 GMT - x-ms-range: - - bytes=732-4827 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "Sending build context to Docker daemon 35.33kB\r\r\nStep 1/17 : FROM - mcr.microsoft.com/dotnet/aspnet:6.0 AS base\n6.0: Pulling from dotnet/aspnet\n9d21b12d5fab: - Pulling fs layer\n20307483facf: Pulling fs layer\n51885b20fc11: Pulling fs - layer\n573f002b5cb0: Pulling fs layer\nb70e22fadac0: Pulling fs layer\n573f002b5cb0: - Waiting\nb70e22fadac0: Waiting\n20307483facf: Verifying Checksum\n20307483facf: - Download complete\n9d21b12d5fab: Verifying Checksum\n9d21b12d5fab: Download - complete\n573f002b5cb0: Verifying Checksum\n573f002b5cb0: Download complete\n51885b20fc11: - Verifying Checksum\n51885b20fc11: Download complete\nb70e22fadac0: Verifying - Checksum\nb70e22fadac0: Download complete\n9d21b12d5fab: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '696' - content-range: - - bytes 732-1427/1428 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:26 GMT - etag: - - '"0x8DB8D97E14ABB45"' - last-modified: - - Wed, 26 Jul 2023 05:19:26 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '4' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:28 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1428' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:26 GMT - etag: - - '"0x8DB8D97E14ABB45"' - last-modified: - - Wed, 26 Jul 2023 05:19:26 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '4' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:31 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1541' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:29 GMT - etag: - - '"0x8DB8D97E27E2C3B"' - last-modified: - - Wed, 26 Jul 2023 05:19:28 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '5' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:31 GMT - x-ms-range: - - bytes=1428-5523 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "20307483facf: Pull complete\n51885b20fc11: Pull complete\n573f002b5cb0: - Pull complete\nb70e22fadac0: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '113' - content-range: - - bytes 1428-1540/1541 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:29 GMT - etag: - - '"0x8DB8D97E27E2C3B"' - last-modified: - - Wed, 26 Jul 2023 05:19:28 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '5' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:31 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1541' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:29 GMT - etag: - - '"0x8DB8D97E27E2C3B"' - last-modified: - - Wed, 26 Jul 2023 05:19:28 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '5' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:34 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2123' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:32 GMT - etag: - - '"0x8DB8D97E424726D"' - last-modified: - - Wed, 26 Jul 2023 05:19:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '6' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:34 GMT - x-ms-range: - - bytes=1541-5636 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "Digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\nStatus: - Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> e21be194dede\nStep - 2/17 : WORKDIR /app\n ---> Running in 140d84b2f842\nRemoving intermediate - container 140d84b2f842\n ---> e11a6bd9af74\nStep 3/17 : EXPOSE 80\n ---> Running - in acef0e97e47c\nRemoving intermediate container acef0e97e47c\n ---> dbc87d2cb911\nStep - 4/17 : EXPOSE 443\n ---> Running in 2d6e8207b86c\nRemoving intermediate container - 2d6e8207b86c\n ---> fde280f1143a\nStep 5/17 : FROM mcr.microsoft.com/dotnet/sdk:6.0 - AS build\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '582' - content-range: - - bytes 1541-2122/2123 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:32 GMT - etag: - - '"0x8DB8D97E424726D"' - last-modified: - - Wed, 26 Jul 2023 05:19:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '6' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:34 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2123' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:32 GMT - etag: - - '"0x8DB8D97E424726D"' - last-modified: - - Wed, 26 Jul 2023 05:19:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '6' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:37 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2614' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:35 GMT - etag: - - '"0x8DB8D97E5A1B2D4"' - last-modified: - - Wed, 26 Jul 2023 05:19:33 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:37 GMT - x-ms-range: - - bytes=2123-6218 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "6.0: Pulling from dotnet/sdk\n9d21b12d5fab: Already exists\n20307483facf: - Already exists\n51885b20fc11: Already exists\n573f002b5cb0: Already exists\nb70e22fadac0: - Already exists\n3daac94afcbd: Pulling fs layer\n4cda43ab38c0: Pulling fs layer\naa0c354e371d: - Pulling fs layer\naa0c354e371d: Verifying Checksum\naa0c354e371d: Download - complete\n3daac94afcbd: Verifying Checksum\n3daac94afcbd: Download complete\n4cda43ab38c0: - Verifying Checksum\n4cda43ab38c0: Download complete\n3daac94afcbd: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '491' - content-range: - - bytes 2123-2613/2614 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:35 GMT - etag: - - '"0x8DB8D97E5A1B2D4"' - last-modified: - - Wed, 26 Jul 2023 05:19:33 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:37 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2614' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:35 GMT - etag: - - '"0x8DB8D97E5A1B2D4"' - last-modified: - - Wed, 26 Jul 2023 05:19:33 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:40 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2614' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:38 GMT - etag: - - '"0x8DB8D97E5A1B2D4"' - last-modified: - - Wed, 26 Jul 2023 05:19:33 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:42 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2643' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:40 GMT - etag: - - '"0x8DB8D97E8F3BCB0"' - last-modified: - - Wed, 26 Jul 2023 05:19:39 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '8' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-range: - - bytes=2614-6709 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "4cda43ab38c0: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '29' - content-range: - - bytes 2614-2642/2643 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:40 GMT - etag: - - '"0x8DB8D97E8F3BCB0"' - last-modified: - - Wed, 26 Jul 2023 05:19:39 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '8' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2643' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:40 GMT - etag: - - '"0x8DB8D97E8F3BCB0"' - last-modified: - - Wed, 26 Jul 2023 05:19:39 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '8' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:45 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3153' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EABB68A8"' - last-modified: - - Wed, 26 Jul 2023 05:19:42 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '9' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:45 GMT - x-ms-range: - - bytes=2643-6738 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "aa0c354e371d: Pull complete\nDigest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\nStatus: - Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> 7d987f8db548\nStep - 6/17 : WORKDIR /src\n ---> Running in 2e426891df22\nRemoving intermediate - container 2e426891df22\n ---> 9eeda81d9c72\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", - \".\"]\n ---> 44585ae0d44c\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\n - ---> Running in 872e060ef77f\n Determining projects to restore...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '510' - content-range: - - bytes 2643-3152/3153 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EABB68A8"' - last-modified: - - Wed, 26 Jul 2023 05:19:42 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '9' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:45 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3153' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EABB68A8"' - last-modified: - - Wed, 26 Jul 2023 05:19:42 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '9' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:47 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3341' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:45 GMT - etag: - - '"0x8DB8D97EC807CF9"' - last-modified: - - Wed, 26 Jul 2023 05:19:45 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:47 GMT - x-ms-range: - - bytes=3153-7248 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: " Restored /src/TestWebApp202305.csproj (in 492 ms).\nRemoving intermediate - container 872e060ef77f\n ---> 223c07d45408\nStep 9/17 : COPY . .\n ---> 402b2d7f8e8b\nStep - 10/17 : WORKDIR \"/src/.\"\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '188' - content-range: - - bytes 3153-3340/3341 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:45 GMT - etag: - - '"0x8DB8D97EC807CF9"' - last-modified: - - Wed, 26 Jul 2023 05:19:45 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:47 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3341' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:45 GMT - etag: - - '"0x8DB8D97EC807CF9"' - last-modified: - - Wed, 26 Jul 2023 05:19:45 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:50 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3626' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:47 GMT - etag: - - '"0x8DB8D97EDE70463"' - last-modified: - - Wed, 26 Jul 2023 05:19:47 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:50 GMT - x-ms-range: - - bytes=3341-7436 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: " ---> Running in 063aa0455fc5\nRemoving intermediate container 063aa0455fc5\n - ---> 2b42b6ed5a86\nStep 11/17 : RUN dotnet build \"TestWebApp202305.csproj\" - -c Release -o /app/build\n ---> Running in 27cd930726aa\nMSBuild version 17.3.2+561848881 - for .NET\n Determining projects to restore...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '285' - content-range: - - bytes 3341-3625/3626 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:48 GMT - etag: - - '"0x8DB8D97EDE70463"' - last-modified: - - Wed, 26 Jul 2023 05:19:47 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:50 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3626' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:48 GMT - etag: - - '"0x8DB8D97EDE70463"' - last-modified: - - Wed, 26 Jul 2023 05:19:47 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:52 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3626' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:50 GMT - etag: - - '"0x8DB8D97EDE70463"' - last-modified: - - Wed, 26 Jul 2023 05:19:47 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:55 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4176' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:53 GMT - etag: - - '"0x8DB8D97F18BB602"' - last-modified: - - Wed, 26 Jul 2023 05:19:53 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '13' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:55 GMT - x-ms-range: - - bytes=3626-7721 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: " All projects are up-to-date for restore.\n TestWebApp202305 -> /app/build/TestWebApp202305.dll\r\n\nBuild - succeeded.\n 0 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:04.66\nRemoving - intermediate container 27cd930726aa\n ---> 67126e684b7a\nStep 12/17 : FROM - build AS publish\n ---> 67126e684b7a\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" - -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in 2dc6b47f2a97\nMSBuild - version 17.3.2+561848881 for .NET\n Determining projects to restore...\n - \ All projects are up-to-date for restore.\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '550' - content-range: - - bytes 3626-4175/4176 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:53 GMT - etag: - - '"0x8DB8D97F18BB602"' - last-modified: - - Wed, 26 Jul 2023 05:19:53 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '13' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:55 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4176' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:53 GMT - etag: - - '"0x8DB8D97F18BB602"' - last-modified: - - Wed, 26 Jul 2023 05:19:53 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '13' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:57 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4563' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:55 GMT - etag: - - '"0x8DB8D97F30BB520"' - last-modified: - - Wed, 26 Jul 2023 05:19:56 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '14' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:58 GMT - x-ms-range: - - bytes=4176-8271 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: " TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\n - \ TestWebApp202305 -> /app/publish/\nRemoving intermediate container 2dc6b47f2a97\n - ---> 4bca33cc53ee\nStep 14/17 : FROM base AS final\n ---> fde280f1143a\nStep - 15/17 : WORKDIR /app\n ---> Running in fd22c4e5cc0c\nRemoving intermediate - container fd22c4e5cc0c\n ---> 71746c2da1c8\nStep 16/17 : COPY --from=publish - /app/publish .\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '387' - content-range: - - bytes 4176-4562/4563 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:55 GMT - etag: - - '"0x8DB8D97F30BB520"' - last-modified: - - Wed, 26 Jul 2023 05:19:56 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '14' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:58 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4563' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:55 GMT - etag: - - '"0x8DB8D97F30BB520"' - last-modified: - - Wed, 26 Jul 2023 05:19:56 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '14' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:00 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5157' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:57 GMT - etag: - - '"0x8DB8D97F4567B37"' - last-modified: - - Wed, 26 Jul 2023 05:19:58 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '15' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:00 GMT - x-ms-range: - - bytes=4563-8658 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: " ---> 8317e0db2873\nStep 17/17 : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\n - ---> Running in 527f74161491\nRemoving intermediate container 527f74161491\n - ---> 9281f0638b41\nSuccessfully built 9281f0638b41\nSuccessfully tagged containerapp000004.azurecr.io/containerapp000003:20230725221919927360\n2023/07/26 - 05:19:58 Successfully executed container: build\n2023/07/26 05:19:58 Executing - step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2023/07/26 - 05:19:58 Pushing image: containerapp000004.azurecr.io/containerapp000003:20230725221919927360, - attempt 1\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '570' - content-range: - - bytes 4563-5156/5157 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:58 GMT - etag: - - '"0x8DB8D97F4567B37"' - last-modified: - - Wed, 26 Jul 2023 05:19:58 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '15' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:00 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5157' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:58 GMT - etag: - - '"0x8DB8D97F4567B37"' - last-modified: - - Wed, 26 Jul 2023 05:19:58 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '15' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:02 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5157' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:00 GMT - etag: - - '"0x8DB8D97F4567B37"' - last-modified: - - Wed, 26 Jul 2023 05:19:58 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '15' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5547' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:02 GMT - etag: - - '"0x8DB8D97F649EBBE"' - last-modified: - - Wed, 26 Jul 2023 05:20:01 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '16' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-range: - - bytes=5157-9252 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "The push refers to repository [containerapp000004.azurecr.io/containerapp000003]\n44116755f7ca: - Preparing\n98d33e0c54d0: Preparing\n5ff9c7f01178: Preparing\nd20574564839: - Preparing\nd6b2f81086e4: Preparing\n333872f929fb: Preparing\n4b3ba104e9a8: - Preparing\n333872f929fb: Waiting\n4b3ba104e9a8: Waiting\n44116755f7ca: Pushed\n98d33e0c54d0: - Pushed\nd20574564839: Pushed\n5ff9c7f01178: Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '378' - content-range: - - bytes 5157-5546/5547 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:02 GMT - etag: - - '"0x8DB8D97F649EBBE"' - last-modified: - - Wed, 26 Jul 2023 05:20:01 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '16' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5569' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F793EEA7"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '17' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-range: - - bytes=5547-9642 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "333872f929fb: Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '22' - content-range: - - bytes 5547-5568/5569 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F793EEA7"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '17' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5569' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F793EEA7"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '17' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:08 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5569' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:05 GMT - etag: - - '"0x8DB8D97F793EEA7"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '17' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:10 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5612' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:08 GMT - etag: - - '"0x8DB8D97F98C6787"' - last-modified: - - Wed, 26 Jul 2023 05:20:06 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '18' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:10 GMT - x-ms-range: - - bytes=5569-9664 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "d6b2f81086e4: Pushed\n4b3ba104e9a8: Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '43' - content-range: - - bytes 5569-5611/5612 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:08 GMT - etag: - - '"0x8DB8D97F98C6787"' - last-modified: - - Wed, 26 Jul 2023 05:20:06 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '18' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:10 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5612' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:08 GMT - etag: - - '"0x8DB8D97F98C6787"' - last-modified: - - Wed, 26 Jul 2023 05:20:06 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '18' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:13 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '6880' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:10 GMT - etag: - - '"0x8DB8D97FB3F5604"' - last-modified: - - Wed, 26 Jul 2023 05:20:09 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-complete: - - successful - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:13 GMT - x-ms-range: - - bytes=5612-9707 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: "20230725221919927360: digest: sha256:e343907c85f0a02d4ebf5786d6e3985a53ae6864b48f9c992f57dd622a66ffa8 - size: 1786\n2023/07/26 05:20:07 Successfully pushed image: containerapp000004.azurecr.io/containerapp000003:20230725221919927360\n2023/07/26 - 05:20:07 Step ID: build marked as successful (elapsed time in seconds: 35.013312)\n2023/07/26 - 05:20:07 Populating digests for step ID: build...\n2023/07/26 05:20:09 Successfully - populated digests for step ID: build\n2023/07/26 05:20:09 Step ID: push marked - as successful (elapsed time in seconds: 9.694228)\n2023/07/26 05:20:09 The - following dependencies were found:\n2023/07/26 05:20:09 \n- image:\n registry: - containerapp000004.azurecr.io\n repository: containerapp000003\n tag: - \"20230725221919927360\"\n digest: sha256:e343907c85f0a02d4ebf5786d6e3985a53ae6864b48f9c992f57dd622a66ffa8\n - \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: dotnet/aspnet\n - \ tag: \"6.0\"\n digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\n - \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: - dotnet/sdk\n tag: \"6.0\"\n digest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\n - \ git: {}\n\r\nRun ID: ca1 was successful after 49s\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1244' - content-range: - - bytes 5612-6879/6880 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:10 GMT - etag: - - '"0x8DB8D97FB3F5604"' - last-modified: - - Wed, 26 Jul 2023 05:20:09 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-complete: - - successful - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:13 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged68.blob.core.windows.net/dc923be4b82446b185b2e0466f4bb999-1umn4lln24/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A20Z&sr=b&sp=r&sig=qpL6tmWvZgKcjkuEsb2MHGSgh7J02JEShKksZg9%2Fr%2Fo%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '6880' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:11 GMT - etag: - - '"0x8DB8D97FB3F5604"' - last-modified: - - Wed, 26 Jul 2023 05:20:09 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:20 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-complete: - - successful - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", - "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "ZDCbGv2gjdgvsRQVKQkFGunFf5ePsb15Xx2PEyPYND+ACRC3uMxK"}], "activeRevisionsMode": - "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": - "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": - null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", - "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], - "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": - "containerapp000004.azurecr.io/containerapp000003:20230725221919927360", "name": - "containerapp000003", "command": null, "args": null, "env": null, "resources": - null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": - null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '1225' - Content-Type: - - application/json - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:12.2342267Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:12.2342267Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.212.62"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.gentleisland-84c6c061.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221919927360","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true - cache-control: - - no-cache - content-length: - - '2403' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-ratelimit-remaining-subscription-resource-requests: - - '699' - x-msedge-ref: - - 'Ref A: 4BA051594E644878A13C42A1D3A32AF4 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:20:11Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249","name":"b385eef9-489b-4079-aa78-8072a4bf0249","status":"InProgress","startTime":"2023-07-26T05:20:13.1356638"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 90A30F6884BA4F04BD6344E875F6C566 Ref B: CO6AA3150220039 Ref C: 2023-07-26T05:20:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249","name":"b385eef9-489b-4079-aa78-8072a4bf0249","status":"InProgress","startTime":"2023-07-26T05:20:13.1356638"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 03384880D3D04B09A6FE04C2E1851A9A Ref B: CO6AA3150217017 Ref C: 2023-07-26T05:20:18Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249","name":"b385eef9-489b-4079-aa78-8072a4bf0249","status":"InProgress","startTime":"2023-07-26T05:20:13.1356638"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1AC657FF0D1743D1927BE2575D688B82 Ref B: CO6AA3150220017 Ref C: 2023-07-26T05:20:21Z' - 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 --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b385eef9-489b-4079-aa78-8072a4bf0249","name":"b385eef9-489b-4079-aa78-8072a4bf0249","status":"Succeeded","startTime":"2023-07-26T05:20:13.1356638"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '281' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1C44F7CB6E184DAF9E7E4A15BD7BEC98 Ref B: CO6AA3150220021 Ref C: 2023-07-26T05:20:24Z' - 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 --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:12.2342267","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:12.2342267"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.212.62"],"latestRevisionName":"containerapp000003--b65gsrd","latestReadyRevisionName":"containerapp000003--b65gsrd","latestRevisionFqdn":"containerapp000003--b65gsrd.gentleisland-84c6c061.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.gentleisland-84c6c061.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221919927360","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '2536' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 012600107C6A4BBB8E5D7EE72A45DA48 Ref B: CO6AA3150219025 Ref C: 2023-07-26T05:20:25Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 329FB2D974934C34B62D493A6CF0299B Ref B: CO6AA3150217031 Ref C: 2023-07-26T05:20:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:12.2342267","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:12.2342267"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.86.212.62"],"latestRevisionName":"containerapp000003--b65gsrd","latestReadyRevisionName":"containerapp000003--b65gsrd","latestRevisionFqdn":"containerapp000003--b65gsrd.gentleisland-84c6c061.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.gentleisland-84c6c061.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221919927360","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '2536' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3A950137911C4FCCAB53BCA644F0B3A6 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:20:27Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml deleted file mode 100644 index 782ae30b3c1..00000000000 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml +++ /dev/null @@ -1,13355 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 27359B568CF84D47BC86078694B5871E Ref B: CO6AA3150218039 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6C792429FCB54437BD505BAFA4F32AAE Ref B: CO6AA3150217011 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 86E1DC536E554E0CA6CADE4DE7219D68 Ref B: CO6AA3150218049 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 43F2CB8E6143482F94EB44862A48EDBB Ref B: CO6AA3150218027 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"querypacks","locations":["West Central - US","East US","South Central US","North Europe","West Europe","Southeast Asia","West - US 2","UK South","Canada Central","Central India","Japan East","Australia - East","Korea Central","France Central","Central US","East US 2","East Asia","West - US","South Africa North","North Central US","Brazil South","Switzerland North","Norway - East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland - West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia - Central","France South","South India","Korea South","Jio India Central","Jio - India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East - US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Switzerland North","Switzerland West","Germany West Central","Australia - Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway - East","Norway West","France South","South India","Korea South","Jio India - Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '13285' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 364D045C48EA4E02BC3D369E534D5CED Ref B: CO6AA3150218029 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"querypacks","locations":["West Central - US","East US","South Central US","North Europe","West Europe","Southeast Asia","West - US 2","UK South","Canada Central","Central India","Japan East","Australia - East","Korea Central","France Central","Central US","East US 2","East Asia","West - US","South Africa North","North Central US","Brazil South","Switzerland North","Norway - East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland - West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia - Central","France South","South India","Korea South","Jio India Central","Jio - India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East - US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Switzerland North","Switzerland West","Germany West Central","Australia - Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway - East","Norway West","France South","South India","Korea South","Jio India - Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '13285' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 028F2F0295E24B8AB43F418610F5DF7E Ref B: CO6AA3150217009 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": - "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '130' - Content-Type: - - application/json - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.9786248Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.9786248Z","modifiedDate":"2023-07-26T05:18:14.9786248Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz","name":"workspace-clitestrgn37hfrmloz6jtk2snhwvz","type":"Microsoft.OperationalInsights/workspaces"}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '891' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz?api-version=2021-12-01-preview - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 0F2C350CBC0D4BC2BDE80C2AB0B3CE3E Ref B: CO6AA3150217035 Ref C: 2023-07-26T05:18:13Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.9786248Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.9786248Z","modifiedDate":"2023-07-26T05:18:14.9786248Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz","name":"workspace-clitestrgn37hfrmloz6jtk2snhwvz","type":"Microsoft.OperationalInsights/workspaces"}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '891' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7D3ED990E7C046D68D818BAF1B84A8E2 Ref B: CO6AA3150217035 Ref C: 2023-07-26T05:18:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgn37hfrmloz6jtk2snhwvz/sharedKeys?api-version=2020-08-01 - response: - body: - string: '{"primarySharedKey":"KrI6O/6tAxPzeZACglLVwrBfxvFjXUknWjMH33S520rLgDLZXyDko7mkOf7PAYzR63fpiUSqeCVvAmWazq73Iw==","secondarySharedKey":"1YJ0KE3payjYh6dnPBE94Ri5t8PfTusBgrXYUY3kqVodsuuEv88uA2QeKny/HVyjqfYXWCCV+NP51eITI0cBKg=="}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 - cache-control: - - no-cache - content-length: - - '223' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 35D562AD4B614FEE9C006BF721046632 Ref B: CO6AA3150219053 Ref C: 2023-07-26T05:18:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": - null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "f8cac130-09ba-4304-89fe-4fbd39ce3fc1", - "sharedKey": "KrI6O/6tAxPzeZACglLVwrBfxvFjXUknWjMH33S520rLgDLZXyDko7mkOf7PAYzR63fpiUSqeCVvAmWazq73Iw=="}}, - "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": - false}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '450' - Content-Type: - - application/json - ParameterSetName: - - -g -n -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-msedge-ref: - - 'Ref A: 0A950AF58DA44580BF504DB8590CB9F0 Ref B: CO6AA3150219047 Ref C: 2023-07-26T05:18:16Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E0FD512875B147C09144DE1921164FFC Ref B: CO6AA3150220031 Ref C: 2023-07-26T05:18:22Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6732E0DD930A44AF824559C9678D9878 Ref B: CO6AA3150217037 Ref C: 2023-07-26T05:18:25Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 71C40C50D37C4E688006F09BD2EB1A6A Ref B: CO6AA3150219011 Ref C: 2023-07-26T05:18:28Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9875BEE36EB64DB6BE522B461F84C634 Ref B: CO6AA3150217033 Ref C: 2023-07-26T05:18:32Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B42C776F1B1D4AF188B538E9092052B6 Ref B: CO6AA3150218053 Ref C: 2023-07-26T05:18:34Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 67E981FD27D443ABBD6932B79CA4E731 Ref B: CO6AA3150220037 Ref C: 2023-07-26T05:18:38Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6A4D9B5C635A4ABBB7773F787358A3F3 Ref B: CO6AA3150217037 Ref C: 2023-07-26T05:18:41Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E5932CA0FF7D4BDF89CE773F15B14559 Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:18:44Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 45AAFB82F8CA4919956AE9457763AC5F Ref B: CO6AA3150220051 Ref C: 2023-07-26T05:18:47Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 93F19E8F4B6B4878A1C65104445B4B73 Ref B: CO6AA3150220021 Ref C: 2023-07-26T05:18:50Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 12732FFC8FD7439A8797619F895CA2CA Ref B: CO6AA3150218017 Ref C: 2023-07-26T05:18:53Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 40C1D932E1E147848571BCAAAD308D7D Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:55Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D5A375CCB4A84C29B881A9CEDD0D08E0 Ref B: CO6AA3150218035 Ref C: 2023-07-26T05:18:57Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"InProgress","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2F65C86664984B5DBDC579AB84041449 Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:19:00Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/d675e5d3-5add-46a9-9abf-16d0fd8c254e","name":"d675e5d3-5add-46a9-9abf-16d0fd8c254e","status":"Succeeded","startTime":"2023-07-26T05:18:22.4805946"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '287' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 61BE9DF778544D63A76ECF33E80642AD Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:03Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CF610D19B3C248E38804741586C3C4E1 Ref B: CO6AA3150220051 Ref C: 2023-07-26T05:19:04Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": - true, "anonymousPullEnabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1cfd1a7-2b73-11ee-88a6-bce92fa43675?api-version=2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1380' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 541C75830989429FAE0A614150348C8D Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:05Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1cfd1a7-2b73-11ee-88a6-bce92fa43675?api-version=2022-02-01-preview - response: - body: - string: '{"status":"Succeeded"}' - headers: - api-supported-versions: - - 2022-02-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-f1cfd1a7-2b73-11ee-88a6-bce92fa43675?api-version=2022-02-01-preview - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 0532CF0B75AB45D59EC625F7EA2B6E86 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1381' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 4C770B40313643B788FD0F4FEB54E376 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr credential show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1381' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3523524EB6624340A378079666195618 Ref B: CO6AA3150218037 Ref C: 2023-07-26T05:19:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr credential show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview - response: - body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"U3lgRQcQqyXe7nEaMgmlyO7TY0wpgqbpgHiNAsVqOb+ACRCuEYve"},{"name":"password2","value":"dfCrDTyOVXk53smWpTYsGGbDOpEH5e1EIQPo9+oVfJ+ACRC0siK+"}]}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '214' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: E54CC92E84634DFAB0EE7489AECB1527 Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:19:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: F37C7C4808DD4931B947F65F5319816A Ref B: CO6AA3150220047 Ref C: 2023-07-26T05:19:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 30DB787F862E476DA63DE9DF345B0C34 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 90174836D23F4436A27C74EB3F3C3ED5 Ref B: CO6AA3150220023 Ref C: 2023-07-26T05:19:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 38611756FE694E2198507C1254442C89 Ref B: CO6AA3150218037 Ref C: 2023-07-26T05:19:17Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 26 Jul 2023 05:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B9165BBE51264D86AC136013098BC0D8 Ref B: CO6AA3150217025 Ref C: 2023-07-26T05:19:18Z' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.5449688","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.5449688"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politesmoke-22daee02.westeurope.azurecontainerapps.io","staticIp":"51.124.62.181","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f8cac130-09ba-4304-89fe-4fbd39ce3fc1","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D60F6BE0F375463E97684095C9759380 Ref B: CO6AA3150218045 Ref C: 2023-07-26T05:19:18Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '234' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: 5607B549FAF14739B9028DD0487BAE52 Ref B: CO6AA3150220019 Ref C: 2023-07-26T05:19:19Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '5906' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 25E55E2A637447D8A7EA98D0DDB9BE07 Ref B: CO6AA3150219009 Ref C: 2023-07-26T05:19:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - '2022-12-01' - cache-control: - - no-cache - content-length: - - '1381' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CE104000002C482CBD3C778131DF46B5 Ref B: CO6AA3150220027 Ref C: 2023-07-26T05:19:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 69509A02264741F8AEEF1899A0B95421 Ref B: CO6AA3150219025 Ref C: 2023-07-26T05:19:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 26 Jul 2023 05:19:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: DED4EBBEA17C4DC8ADAAE7FE474AB8C8 Ref B: CO6AA3150218009 Ref C: 2023-07-26T05:19:20Z' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list - response: - body: - string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n - \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n - \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n - \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n - \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n - \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n - \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n - \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n - \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n - \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n - \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n - \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n - \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n - \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n - \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n - \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n - \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n - \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n - \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n - \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n - \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n - \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n - \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n - \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n - \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n - \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n - \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n - \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n - \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n - \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n - \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n - \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n - \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n - \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n - \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n - \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n - \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n - \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n - \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n - \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n - \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n - \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n - \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n - \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n - \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n - \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n - \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n - \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n - \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n - \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n - \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n - \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n - \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n - \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n - \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n - \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n - \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n - \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n - \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n - \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n - \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n - \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n - \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n - \ ]\n}" - headers: - cache-control: - - max-age=300 - content-length: - - '5624' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - etag: - - '0x8DB8D97AC6B43E5' - last-modified: - - Wed, 26 Jul 2023 05:17:57 GMT - x-cache: - - TCP_MISS - x-mcr-privacy: - - https://privacy.microsoft.com/en-us/privacystatement - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - x-msedge-ref: - - 'Ref A: 06A81F50723042388BE55570019C9853 Ref B: CO1EDGE1412 Ref C: 2023-07-26T05:19:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list - response: - body: - string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n - \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n - \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n - \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n - \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n - \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n - \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n - \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n - \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n - \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n - \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n - \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n - \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n - \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n - \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n - \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n - \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n - \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n - \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n - \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n - \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n - \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n - \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n - \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n - \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n - \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n - \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n - \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n - \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n - \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n - \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n - \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n - \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n - \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n - \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n - \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n - \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n - \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n - \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n - \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n - \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n - \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n - \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n - \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n - \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n - \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n - \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n - \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n - \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n - \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n - \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n - \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n - \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n - \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n - \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n - \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n - \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n - \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n - \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n - \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n - \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n - \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n - \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n - \ ]\n}" - headers: - cache-control: - - max-age=300 - content-length: - - '5624' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:22 GMT - etag: - - '0x8DB8D97AC6B43E5' - last-modified: - - Wed, 26 Jul 2023 05:17:57 GMT - x-cache: - - TCP_MISS - x-mcr-privacy: - - https://privacy.microsoft.com/en-us/privacystatement - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - x-msedge-ref: - - 'Ref A: D39AE05E171840E38BD209C442DB9495 Ref B: CO1EDGE2718 Ref C: 2023-07-26T05:19:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvv6nyarykwraocx2cfvnpuso6mknu4cs3budqokphkllbch3y6ogvyatpzdsztvav/providers/Microsoft.ContainerRegistry/registries/containerapp6mfrefs64x3m","name":"containerapp6mfrefs64x3m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6516' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1CDBF77D09CC4734A0DCE133991A14FD Ref B: CO6AA3150217023 Ref C: 2023-07-26T05:19:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1381' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 700825820FA3447796F08E06C85A98AE Ref B: CO6AA3150220009 Ref C: 2023-07-26T05:19:28Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"status": "Enabled", "platform": - {"os": "linux", "architecture": "amd64"}, "agentConfiguration": {"cpu": 2}, - "timeout": 3600, "step": {"type": "EncodedTask", "encodedTaskContent": "dmVyc2lvbjogdjEuMS4wCnZlcnNpb246IHYxLjEuMApzdGVwczoKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vb3J5eC9jbGk6ZGViaWFuLWJ1c3Rlci0yMDIzMDIyMi4xIG9yeXggZG9ja2VyZmlsZSAtLWJpbmQtcG9ydCA4MDgwIC0tb3V0cHV0IC4vRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gYnVpbGQ6IC10ICRSZWdpc3RyeS9jb250YWluZXJhcHBvNnVkdGxlZDd5NzM6MjAyMzA3MjUyMjE5MjIwNjQxNjIgLWYgRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gcHVzaDogWyIkUmVnaXN0cnkvY29udGFpbmVyYXBwbzZ1ZHRsZWQ3eTczOjIwMjMwNzI1MjIxOTIyMDY0MTYyIl0KICAgIHRpbWVvdXQ6IDE4MDAK", - "values": []}, "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", - "updateTriggerPayloadType": "Default", "status": "Enabled", "name": "defaultBaseimageTriggerName"}}, - "credentials": {}, "isSystemTask": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '940' - Content-Type: - - application/json - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp?api-version=2019-06-01-preview - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2023-07-26T05:19:30.0618784+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnZlcnNpb246IHYxLjEuMApzdGVwczoKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vb3J5eC9jbGk6ZGViaWFuLWJ1c3Rlci0yMDIzMDIyMi4xIG9yeXggZG9ja2VyZmlsZSAtLWJpbmQtcG9ydCA4MDgwIC0tb3V0cHV0IC4vRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gYnVpbGQ6IC10ICRSZWdpc3RyeS9jb250YWluZXJhcHBvNnVkdGxlZDd5NzM6MjAyMzA3MjUyMjE5MjIwNjQxNjIgLWYgRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gcHVzaDogWyIkUmVnaXN0cnkvY29udGFpbmVyYXBwbzZ1ZHRsZWQ3eTczOjIwMjMwNzI1MjIxOTIyMDY0MTYyIl0KICAgIHRpbWVvdXQ6IDE4MDAK","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp","name":"cli_build_containerapp","location":"eastus","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:29.7742476+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:29.7742476+00:00"}}' - headers: - cache-control: - - no-cache - content-length: - - '1491' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-msedge-ref: - - 'Ref A: EF5E030DE2E540E7BFC3CAEF684ACF16 Ref B: CO6AA3150218019 Ref C: 2023-07-26T05:19:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvv6nyarykwraocx2cfvnpuso6mknu4cs3budqokphkllbch3y6ogvyatpzdsztvav/providers/Microsoft.ContainerRegistry/registries/containerapp6mfrefs64x3m","name":"containerapp6mfrefs64x3m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6516' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:06.1629303Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:13.0828314+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1381' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview - response: - body: - string: '{"uploadUrl":"https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/source/202307260000/f765ee29-7993-433e-8f4c-c6b5e113a46a.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A41Z&sr=b&sp=cw&sig=NFfZL71DCuRdaISZo2qe606NrFpZGonCh2cWAhl5RaQ%3D","relativePath":"source/202307260000/f765ee29-7993-433e-8f4c-c6b5e113a46a.tar.gz"}' - headers: - cache-control: - - no-cache - content-length: - - '351' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: !!binary | - H4sICO6swGQC/2NsaV9zb3VyY2VfYXJjaGl2ZV9hNmNhY2YyMzJhNjc0ZTdhOTkwMDEzNWU3MTU4 - OTRmYi50YXIA7Vzrb9s4Es/nAP0fpt5byO3ash5+JG6Svb022y7Q6wZtD4fD4bBQJNpmI0s6knLi - 7Wb/9huSkqO46RO1c23nlw+RhxzO8DEcciTS7bm9v55EF09YlDCxsxF4Fm/773lh/+pZ032/Pwh2 - 4GJnCyiligSK/9yV/EIQ7MFc8Tk79Id7Q29/sLcfuKPBftAPg90dwleP3hZkaHsYjUZvt/83nkfB - yNuBAdn/xuHS/E/zP83/3yyionBfyc3P/8Ph8G32H3jDYM3+vTAY7YBH9r9xLCIBsWCRYsdC5AIO - QbD/llywtjNTqugyTZXOvQe7Oie7KASTspmrItU5ikjNmsn6d50W5/kZZyeRkOyaIEvvFiahzpzm - 0+n1bPNcTKNMp5sMPEvYxfO8VNdzuT2habJn0uvSSixZviOzSV8VjUaBuaqatTW114MFZ+fAsinP - GEimymJX2w4+tR2dJJ2Oqbz7KudZ+7ffEi6yaM46UKXew2KuMVRlIZvDXlnZOh01adu6t52ELVZ8 - ml5phAabZ+2bEkqRsizOE5a0X6P+imEbJGOYRKlkcNnkaPbFjUWhWSget2+uUlGepjxG3ZpaOz2s - S6NXGoU6VQN3mh1RtWscqXgGfa8PUZbAJBfnkUhA5WCGHsyQmjKxKmpSZrHiWH/sxA72pOxAhjW9 - B693wTy1G8O5jcVqHS8rWe8pEpN1kW+Wi6zYbzgmY2zJDuRZuoRC5Aue8GxalcozwP5iaV7MWaaQ - CctwLYc7xxaNpkwPKiHqXw+u52FX9udqzaZ6oLAMRwAcHh6C0yjcgR91QTCG15dYMaOf0H0tQM1Y - pU+BIioJui9LqatXPcIff8DA8+7VKlhmFKc5nbrB5nlSpszFEZELpY0e1XpAq4KvCrT+p/U/rf+/ - XZzybOMhoE+I/4yGPsV/aP6n/qf5n7Dp+f/8/Pw24z+hNxqux38G4ZDiP9vAd3dxay56ehjgXhOy - PGG4U75/fxfuw9/N/g93tYXeHmYxx50i0nvNIMlVKMXtIaWOtyTstJw2kw3Budd25ssqwoC5x5KJ - xVXIRwec1gNQJi5S6fMYt+B6KwoTkc8B1eUiz/R+2EQOpMoF07vw4yqCcaWqYTrEyol5lPLf2Qn+ - buP+PdbZsBz35NfnL/We2Amx65xmpEaz6sgO/mto8tCEGODJy5cnYOvQkGYJKE/r79poxAtDa2Ox - jVKecqlYBnlWxRJYYuTo+AJEaQoZU+e5OMM6KSYmUbxq/kpkavjblW4VMc/qbbwux0RBridaLp5N - TYan9a+GXs/qdoLINh0qkONzVs5PmehgSwtkQG5hI0uVVnUYZa2dF1FqgyiNnjChvl8yk9gBXwci - MAOfQJvLZ9EzWyXLZYIbOuyEjcMLZiiCqVJkWGCqAxiXNa8p/OgQvAanoVnFm6yavOKtaKYuD3Yv - V+1wvNBjy7YXdugE69vocWiZZm4B09nW26Bq+rbJY/XRKpqfrlzKWHfwXR3XseU7tc5qJvJzG8JZ - KahbDi00wZZTy4Llk6odNbvtDMfw/gjOCbYROPCDyWGIYyTq3DWxDhjZKBjIgsV8wuOqnlayhHOu - ZmhnHC0/XUIVsZLIKTElntU10bHGWvM4kij6+KeHD49fOGNDQmKeyVwHkUxrmEr8gKpUNi6BpWyB - 9oGdK/iCpwyFOCYspbEy0Quu2v6KfIomdfbgmsxHj57/8uwfL47fJ5dLtCxkT5Z6pigl+xhhCZtE - ZapqEW/01IePnJUNvnX0rOyyfWU8UZLoaaWyZf2rCk/fNEJs5htGSFGPEJ2jHiFFPUI00a2tw0za - bWeli56YdCYtSQcJaYVI8T/a/9H+j/DFoojiM/Ts5pXiLe3/PG3sa/Y/wH+0/9sC9NqipZfXrTG0 - mnuzVken4EJD4oJEJ3ou/lmqXqvhog2pSpTMkGQseKEkkuxisKWbVWk+vaUEt1cFGlp6pWQ4mtvK - K7Zr3wJo9j99t+/2jVzDhCsSQw7cobtfk9kruSL6K6Kti0nou34jpfFlQyVi6IZ1ov3MoKLvI1O1 - tiP/T/6f/D/hK/P/5kuezb4C/Oj3f77XH47o/R/N/9T/NP8TtjD/S7VMmZwxpmRvI/b/cfN/6PVD - mv9p/qf+p/mfsOX53zy7sZSf0/7fFf/zB6M1+++PAor/bQWnebI0sbciSvRhhjEMvOJCv/yb5Jka - g98vLqD1tIx5EsFjEWUJa3XgCUsXTPE46sBPgut3+DLKZFcywSfmDXpkyozzNBdj+M7z/jb6+Wd6 - YUj+n/w/+X/C/xGq848blfEJ8b9BGND+j+Z/6n+a/wlbmP/Nse1NXQTxvv1f6A/W7D/wR/T9/1bw - Ybc6iPrmhPp2AHuC316NcB8eH7+EWT5n5sy5qz9ltQz2DLu+FuCdp/abJ9DtrQ0deA2Kq5SNwak+ - 53fg8q3n0q00OppO/p/sn/w/4eP9v7mW5fb8f7ju/4OA/P+X5f/NCDJHXng2/bQ1gMQ1QNvBpyLP - EnsCKdIJeSli5pD3J/9P9k/+n/BZ5399Od2Gb4D5hPhv2B9S/Jfmf+p/mv8Jm5//7WF+dkv7Pz8I - Kf57SziY+UcH3x/WNzzA90cHPSTtHswCQ68urLC3hprEABNxE3g9NT4ziZpO0wbt/8j/k/8nfDn+ - 377+vS3/H4bDN/z/MCD/vxX/f/fRrw9f/uvkGGZqnmq/b/4BHMzQIxyZI/EH5lWscfjmybh6S7Pp - Kc/OQLD00Ln6jtyBmWCTQ+fmT8sd6BkhvVrKgf4QuSquWpJcydILEpNSHP2TpbF+06xyuJ6nsOXZ - YpDFVIPsm/w/2f8H+v997Ie90chzw1HfC70+Wc83ADUvwiw9S85P443JeJ//Hwz8dfsPhwPy/1tZ - /9kLfsaw8F3f9e7sSsUKOb6DzrQL8TwZwzwW7pzHIpf5RLnofHu5WF704pSPE3bKo6x7im3IRDfw - gtALgsD1QeeAJI/PmJhwdNDdrr4ysGtuGdzz9jwk5KUqSgVu79FVNveOvQIT5yNMHkOwt+d5VpXT - kqeoTFfBX56zKZdKLHtxnqmIZ0xERZEPywSXAsloOQrHRpNRMAgCfz8IvGEfl5PQncCHiSpKORvD - v1ufKKj1n7WifVMyTTUEAoFAIBAIBAKBQCAQCAQCgUAgEAgEAoFAIBAIBAKBQCAQCITPgP8BbYQa - HgCgAAA= - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2456' - Content-Type: - - application/octet-stream - User-Agent: - - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-version: - - '2022-11-02' - method: PUT - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/source/202307260000/f765ee29-7993-433e-8f4c-c6b5e113a46a.tar.gz?sv=2021-12-02&se=2023-07-26T06%3A19%3A41Z&sr=b&sp=cw&sig=NFfZL71DCuRdaISZo2qe606NrFpZGonCh2cWAhl5RaQ%3D - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - rxGF3WO4fPUm2UF/Rf2CWA== - date: - - Wed, 26 Jul 2023 05:19:41 GMT - etag: - - '"0x8DB8D97EAC7475E"' - last-modified: - - Wed, 26 Jul 2023 05:19:42 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-content-crc64: - - hLivWi/uaz8= - x-ms-request-server-encrypted: - - 'true' - x-ms-version: - - '2022-11-02' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp/listDetails?api-version=2019-06-01-preview - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2023-07-26T05:19:30.0618784+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnZlcnNpb246IHYxLjEuMApzdGVwczoKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vb3J5eC9jbGk6ZGViaWFuLWJ1c3Rlci0yMDIzMDIyMi4xIG9yeXggZG9ja2VyZmlsZSAtLWJpbmQtcG9ydCA4MDgwIC0tb3V0cHV0IC4vRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gYnVpbGQ6IC10ICRSZWdpc3RyeS9jb250YWluZXJhcHBvNnVkdGxlZDd5NzM6MjAyMzA3MjUyMjE5MjIwNjQxNjIgLWYgRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gcHVzaDogWyIkUmVnaXN0cnkvY29udGFpbmVyYXBwbzZ1ZHRsZWQ3eTczOjIwMjMwNzI1MjIxOTIyMDY0MTYyIl0KICAgIHRpbWVvdXQ6IDE4MDAK","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp","name":"cli_build_containerapp","location":"eastus","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:29.7742476+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:29.7742476+00:00"}}' - headers: - cache-control: - - no-cache - content-length: - - '1491' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"type": "TaskRunRequest", "isArchiveEnabled": false, "taskId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp", - "overrideTaskStepProperties": {"contextPath": "source/202307260000/f765ee29-7993-433e-8f4c-c6b5e113a46a.tar.gz", - "file": "C:\\Users\\snehapar\\AppData\\Local\\Temp\\tmp3nlkdwbc", "arguments": - [], "values": []}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '458' - Content-Type: - - application/json - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-26T05:19:43+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:42.8480882+00:00"}}' - headers: - cache-control: - - no-cache - content-length: - - '523' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview - response: - body: - string: '{"logLink":"https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D"}' - headers: - cache-control: - - no-cache - content-length: - - '228' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:45 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EBBCA12E"' - last-modified: - - Wed, 26 Jul 2023 05:19:43 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:45 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EBBCA12E"' - last-modified: - - Wed, 26 Jul 2023 05:19:43 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:45 GMT - x-ms-range: - - bytes=0-4095 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "2023/07/26 05:19:43 Downloading source code...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-range: - - bytes 0-47/48 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EBBCA12E"' - last-modified: - - Wed, 26 Jul 2023 05:19:43 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:46 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - etag: - - '"0x8DB8D97EBBCA12E"' - last-modified: - - Wed, 26 Jul 2023 05:19:43 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '1' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:48 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1416' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:46 GMT - etag: - - '"0x8DB8D97ED6F93A0"' - last-modified: - - Wed, 26 Jul 2023 05:19:46 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:48 GMT - x-ms-range: - - bytes=48-4143 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "2023/07/26 05:19:44 Finished downloading source code\r\n2023/07/26 - 05:19:44 Alias support enabled for version >= 1.1.0, please see https://aka.ms/acr/tasks/task-aliases - for more information.\n2023/07/26 05:19:44 Creating Docker network: acb_default_network, - driver: 'bridge'\n2023/07/26 05:19:45 Successfully set up Docker network: - acb_default_network\n2023/07/26 05:19:45 Setting up Docker configuration...\n2023/07/26 - 05:19:45 Successfully set up Docker configuration\n2023/07/26 05:19:45 Logging - in to registry: containerapp000004.azurecr.io\n2023/07/26 05:19:46 Successfully - logged into containerapp000004.azurecr.io\n2023/07/26 05:19:46 Executing step - ID: acb_step_0. Timeout(sec): 28800, Working directory: '', Network: 'acb_default_network'\n2023/07/26 - 05:19:46 Launching container with name: acb_step_0\nUnable to find image 'mcr.microsoft.com/oryx/cli:debian-buster-20230222.1' - locally\ndebian-buster-20230222.1: Pulling from oryx/cli\nb2404786f3fe: Pulling - fs layer\ne97ef50ee5a8: Pulling fs layer\ndfb1477a1a0e: Pulling fs layer\n69fefe447a70: - Pulling fs layer\n75c028bd406f: Pulling fs layer\n69285aafba30: Pulling fs - layer\n5ec5a733efd1: Pulling fs layer\n940e5351b949: Pulling fs layer\n75c028bd406f: - Waiting\n69285aafba30: Waiting\n69fefe447a70: Waiting\n5ec5a733efd1: Waiting\n940e5351b949: - Waiting\ne97ef50ee5a8: Verifying Checksum\ne97ef50ee5a8: Download complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1356' - content-range: - - bytes 48-1415/1416 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:46 GMT - etag: - - '"0x8DB8D97ED6F93A0"' - last-modified: - - Wed, 26 Jul 2023 05:19:46 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:48 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1416' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:46 GMT - etag: - - '"0x8DB8D97ED6F93A0"' - last-modified: - - Wed, 26 Jul 2023 05:19:46 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:50 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1416' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:48 GMT - etag: - - '"0x8DB8D97ED6F93A0"' - last-modified: - - Wed, 26 Jul 2023 05:19:46 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '3' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:53 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1985' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:51 GMT - etag: - - '"0x8DB8D97F05EF90D"' - last-modified: - - Wed, 26 Jul 2023 05:19:51 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '5' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:53 GMT - x-ms-range: - - bytes=1416-5511 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "dfb1477a1a0e: Verifying Checksum\ndfb1477a1a0e: Download complete\n75c028bd406f: - Verifying Checksum\n75c028bd406f: Download complete\nb2404786f3fe: Verifying - Checksum\nb2404786f3fe: Download complete\n69285aafba30: Verifying Checksum\n69285aafba30: - Download complete\n940e5351b949: Verifying Checksum\n940e5351b949: Download - complete\n69fefe447a70: Verifying Checksum\n69fefe447a70: Download complete\n5ec5a733efd1: - Verifying Checksum\n5ec5a733efd1: Download complete\nb2404786f3fe: Pull complete\r\ne97ef50ee5a8: - Pull complete\ndfb1477a1a0e: Pull complete\n69fefe447a70: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '569' - content-range: - - bytes 1416-1984/1985 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:51 GMT - etag: - - '"0x8DB8D97F05EF90D"' - last-modified: - - Wed, 26 Jul 2023 05:19:51 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '5' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:53 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1985' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:51 GMT - etag: - - '"0x8DB8D97F05EF90D"' - last-modified: - - Wed, 26 Jul 2023 05:19:51 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '5' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:56 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2098' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:54 GMT - etag: - - '"0x8DB8D97F19337F7"' - last-modified: - - Wed, 26 Jul 2023 05:19:53 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '6' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:56 GMT - x-ms-range: - - bytes=1985-6080 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "75c028bd406f: Pull complete\n69285aafba30: Pull complete\n5ec5a733efd1: - Pull complete\n940e5351b949: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '113' - content-range: - - bytes 1985-2097/2098 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:54 GMT - etag: - - '"0x8DB8D97F19337F7"' - last-modified: - - Wed, 26 Jul 2023 05:19:53 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '6' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:56 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2098' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:54 GMT - etag: - - '"0x8DB8D97F19337F7"' - last-modified: - - Wed, 26 Jul 2023 05:19:53 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '6' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:59 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2552' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:57 GMT - etag: - - '"0x8DB8D97F3A9857C"' - last-modified: - - Wed, 26 Jul 2023 05:19:57 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:59 GMT - x-ms-range: - - bytes=2098-6193 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Digest: sha256:cbfa4beec24c74057550bb121cb6ea0820af23416a90d1f52f2b01234d5fe934\nStatus: - Downloaded newer image for mcr.microsoft.com/oryx/cli:debian-buster-20230222.1\nDockerfile - written to '/workspace/Dockerfile'.\n2023/07/26 05:19:57 Successfully executed - container: acb_step_0\n2023/07/26 05:19:57 Executing step ID: acb_step_1. - Timeout(sec): 28800, Working directory: '', Network: 'acb_default_network'\n2023/07/26 - 05:19:57 Scanning for dependencies...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '454' - content-range: - - bytes 2098-2551/2552 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:57 GMT - etag: - - '"0x8DB8D97F3A9857C"' - last-modified: - - Wed, 26 Jul 2023 05:19:57 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:19:59 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2552' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:57 GMT - etag: - - '"0x8DB8D97F3A9857C"' - last-modified: - - Wed, 26 Jul 2023 05:19:57 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '7' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:02 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3621' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:00 GMT - etag: - - '"0x8DB8D97F4DF225B"' - last-modified: - - Wed, 26 Jul 2023 05:19:59 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '8' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:02 GMT - x-ms-range: - - bytes=2552-6647 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "2023/07/26 05:19:57 Successfully scanned dependencies\n2023/07/26 05:19:57 - Launching container with name: acb_step_1\nSending build context to Docker - daemon 16.38kB\r\r\nStep 1/10 : ARG RUNTIME=node:18\nStep 2/10 : FROM mcr.microsoft.com/oryx/cli:debian-bullseye-stable - as build\ndebian-bullseye-stable: Pulling from oryx/cli\n34df401c391c: Pulling - fs layer\n6fdd0e5b72cc: Pulling fs layer\n4f4fb700ef54: Pulling fs layer\n27afee16150d: - Pulling fs layer\n511c1db5fe39: Pulling fs layer\naef5a7f065ac: Pulling fs - layer\n379c662bf2c6: Pulling fs layer\n53047a51d46f: Pulling fs layer\n27afee16150d: - Waiting\n511c1db5fe39: Waiting\naef5a7f065ac: Waiting\n379c662bf2c6: Waiting\n53047a51d46f: - Waiting\n4f4fb700ef54: Verifying Checksum\n4f4fb700ef54: Download complete\n6fdd0e5b72cc: - Verifying Checksum\n6fdd0e5b72cc: Download complete\n511c1db5fe39: Verifying - Checksum\n511c1db5fe39: Download complete\n34df401c391c: Verifying Checksum\n34df401c391c: - Download complete\n27afee16150d: Verifying Checksum\n27afee16150d: Download - complete\n53047a51d46f: Verifying Checksum\n53047a51d46f: Download complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1069' - content-range: - - bytes 2552-3620/3621 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:00 GMT - etag: - - '"0x8DB8D97F4DF225B"' - last-modified: - - Wed, 26 Jul 2023 05:19:59 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '8' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:02 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3621' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:00 GMT - etag: - - '"0x8DB8D97F4DF225B"' - last-modified: - - Wed, 26 Jul 2023 05:19:59 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '8' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3780' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F63D2871"' - last-modified: - - Wed, 26 Jul 2023 05:20:01 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '9' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-range: - - bytes=3621-7716 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "aef5a7f065ac: Verifying Checksum\naef5a7f065ac: Download complete\n379c662bf2c6: - Verifying Checksum\n379c662bf2c6: Download complete\n34df401c391c: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '159' - content-range: - - bytes 3621-3779/3780 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F63D2871"' - last-modified: - - Wed, 26 Jul 2023 05:20:01 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '9' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3865' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F7B50206"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-range: - - bytes=3780-7875 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "6fdd0e5b72cc: Pull complete\n4f4fb700ef54: Pull complete\n27afee16150d: - Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '85' - content-range: - - bytes 3780-3864/3865 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F7B50206"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:05 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3865' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:03 GMT - etag: - - '"0x8DB8D97F7B50206"' - last-modified: - - Wed, 26 Jul 2023 05:20:03 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '10' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:08 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4217' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:06 GMT - etag: - - '"0x8DB8D97F8E72077"' - last-modified: - - Wed, 26 Jul 2023 05:20:05 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:08 GMT - x-ms-range: - - bytes=3865-7960 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "511c1db5fe39: Pull complete\naef5a7f065ac: Pull complete\n379c662bf2c6: - Pull complete\n53047a51d46f: Pull complete\nDigest: sha256:9da0586bddf951653dbca665361c8be7bebfeff49d55b66795cf7ca613b8d8ba\nStatus: - Downloaded newer image for mcr.microsoft.com/oryx/cli:debian-bullseye-stable\n - ---> b7cba7f00d1d\nStep 3/10 : WORKDIR /app\n ---> Running in 7937f06059b8\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '352' - content-range: - - bytes 3865-4216/4217 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:06 GMT - etag: - - '"0x8DB8D97F8E72077"' - last-modified: - - Wed, 26 Jul 2023 05:20:05 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:08 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4217' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:06 GMT - etag: - - '"0x8DB8D97F8E72077"' - last-modified: - - Wed, 26 Jul 2023 05:20:05 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '11' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:10 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4793' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:08 GMT - etag: - - '"0x8DB8D97FAA5EC71"' - last-modified: - - Wed, 26 Jul 2023 05:20:08 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '12' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:10 GMT - x-ms-range: - - bytes=4217-8312 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Removing intermediate container 7937f06059b8\n ---> 2edc20652f6a\nStep - 4/10 : COPY . .\n ---> cc31df4872fc\nStep 5/10 : RUN oryx build /app --output - /output\n ---> Running in 26c493c8f0d4\nOperation performed by Microsoft Oryx, - https://github.com/Microsoft/Oryx\nYou can report issues at https://github.com/Microsoft/Oryx/issues\n\nOryx - Version: 0.2.20230724.1, Commit: e01b34550f75a38df92af2041687cb2b0ad41ec0, - ReleaseTagName: 20230724.1\n\nBuild Operation ID: 8d88298df8d0bdd6\nOS Type - \ : bullseye\nImage Type : cli\n\nDetecting platforms...\nDetected - following platforms:\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '576' - content-range: - - bytes 4217-4792/4793 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:08 GMT - etag: - - '"0x8DB8D97FAA5EC71"' - last-modified: - - Wed, 26 Jul 2023 05:20:08 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '12' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:10 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4793' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:08 GMT - etag: - - '"0x8DB8D97FAA5EC71"' - last-modified: - - Wed, 26 Jul 2023 05:20:08 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '12' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:13 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5575' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:11 GMT - etag: - - '"0x8DB8D97FC06FC4F"' - last-modified: - - Wed, 26 Jul 2023 05:20:11 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '13' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:13 GMT - x-ms-range: - - bytes=4793-8888 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: " nodejs: 16.20.1\nVersion '16.20.1' of platform 'nodejs' is not installed. - Generating script to install it...\nDetected the following frameworks: Express\n\n\nSource - directory : /app\nDestination directory: /output\n\nInstalling common - platform dependencies...\nGet:1 http://deb.debian.org/debian bullseye InRelease - [116 kB]\nGet:2 http://deb.debian.org/debian-security bullseye-security InRelease - [48.4 kB]\nGet:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 - kB]\nGet:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8183 - kB]\nGet:5 http://deb.debian.org/debian-security bullseye-security/main amd64 - Packages [252 kB]\nGet:6 http://deb.debian.org/debian bullseye-updates/main - amd64 Packages [14.8 kB]\nFetched 8658 kB in 2s (5534 kB/s)\nReading package - lists...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '782' - content-range: - - bytes 4793-5574/5575 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:11 GMT - etag: - - '"0x8DB8D97FC06FC4F"' - last-modified: - - Wed, 26 Jul 2023 05:20:11 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '13' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:13 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '5575' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:11 GMT - etag: - - '"0x8DB8D97FC06FC4F"' - last-modified: - - Wed, 26 Jul 2023 05:20:11 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '13' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:15 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '7469' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:13 GMT - etag: - - '"0x8DB8D97FD3AED6A"' - last-modified: - - Wed, 26 Jul 2023 05:20:13 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '14' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:15 GMT - x-ms-range: - - bytes=5575-9670 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Reading package lists...\nBuilding dependency tree...\nReading state - information...\nCalculating upgrade...\n0 upgraded, 0 newly installed, 0 to - remove and 0 not upgraded.\nReading package lists...\nBuilding dependency - tree...\nReading state information...\nThe following additional packages will - be installed:\n git-man libcurl3-gnutls liberror-perl libgdbm-compat4 libgdbm6 - libperl5.32\n perl perl-modules-5.32\nSuggested packages:\n gettext-base - git-daemon-run | git-daemon-sysvinit git-doc git-el git-email\n git-gui gitk - gitweb git-cvs git-mediawiki git-svn gdbm-l10n perl-doc\n libterm-readline-gnu-perl - | libterm-readline-perl-perl make\n libtap-harness-archive-perl\nRecommended - packages:\n patch less ssh-client\nThe following NEW packages will be installed:\n - \ git git-man libcurl3-gnutls liberror-perl libgdbm-compat4 libgdbm6\n libperl5.32 - perl perl-modules-5.32\n0 upgraded, 9 newly installed, 0 to remove and 0 not - upgraded.\nNeed to get 15.1 MB of archives.\nAfter this operation, 86.0 MB - of additional disk space will be used.\nGet:1 http://deb.debian.org/debian - bullseye/main amd64 perl-modules-5.32 all 5.32.1-4+deb11u2 [2823 kB]\nGet:2 - http://deb.debian.org/debian bullseye/main amd64 libgdbm6 amd64 1.19-2 [64.9 - kB]\nGet:3 http://deb.debian.org/debian bullseye/main amd64 libgdbm-compat4 - amd64 1.19-2 [44.7 kB]\nGet:4 http://deb.debian.org/debian bullseye/main amd64 - libperl5.32 amd64 5.32.1-4+deb11u2 [4106 kB]\nGet:5 http://deb.debian.org/debian - bullseye/main amd64 perl amd64 5.32.1-4+deb11u2 [293 kB]\nGet:6 http://deb.debian.org/debian - bullseye/main amd64 libcurl3-gnutls amd64 7.74.0-1.3+deb11u7 [343 kB]\nGet:7 - http://deb.debian.org/debian bullseye/main amd64 liberror-perl all 0.17029-1 - [31.0 kB]\nGet:8 http://deb.debian.org/debian bullseye/main amd64 git-man - all 1:2.30.2-1+deb11u2 [1828 kB]\nGet:9 http://deb.debian.org/debian bullseye/main - amd64 git amd64 1:2.30.2-1+deb11u2 [5518 kB]\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1894' - content-range: - - bytes 5575-7468/7469 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:13 GMT - etag: - - '"0x8DB8D97FD3AED6A"' - last-modified: - - Wed, 26 Jul 2023 05:20:13 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '14' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:15 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '7469' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:13 GMT - etag: - - '"0x8DB8D97FD3AED6A"' - last-modified: - - Wed, 26 Jul 2023 05:20:13 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '14' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:18 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '9587' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:16 GMT - etag: - - '"0x8DB8D97FE76503B"' - last-modified: - - Wed, 26 Jul 2023 05:20:15 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '15' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:18 GMT - x-ms-range: - - bytes=7469-11564 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "\e[91mdebconf: delaying package configuration, since apt-utils is not - installed\n\e[0mFetched 15.1 MB in 0s (51.9 MB/s)\nSelecting previously unselected - package perl-modules-5.32.\n(Reading database ... \n(Reading database ... - 5%\n(Reading database ... 10%\n(Reading database ... 15%\n(Reading database - ... 20%\n(Reading database ... 25%\n(Reading database ... 30%\n(Reading database - ... 35%\n(Reading database ... 40%\n(Reading database ... 45%\n(Reading database - ... 50%\n(Reading database ... 55%\n(Reading database ... 60%\n(Reading database - ... 65%\n(Reading database ... 70%\n(Reading database ... 75%\n(Reading database - ... 80%\n(Reading database ... 85%\n(Reading database ... 90%\n(Reading database - ... 95%\n(Reading database ... 100%\n(Reading database ... 10093 files and - directories currently installed.)\nPreparing to unpack .../0-perl-modules-5.32_5.32.1-4+deb11u2_all.deb - ...\nUnpacking perl-modules-5.32 (5.32.1-4+deb11u2) ...\nSelecting previously - unselected package libgdbm6:amd64.\nPreparing to unpack .../1-libgdbm6_1.19-2_amd64.deb - ...\nUnpacking libgdbm6:amd64 (1.19-2) ...\nSelecting previously unselected - package libgdbm-compat4:amd64.\nPreparing to unpack .../2-libgdbm-compat4_1.19-2_amd64.deb - ...\nUnpacking libgdbm-compat4:amd64 (1.19-2) ...\nSelecting previously unselected - package libperl5.32:amd64.\nPreparing to unpack .../3-libperl5.32_5.32.1-4+deb11u2_amd64.deb - ...\nUnpacking libperl5.32:amd64 (5.32.1-4+deb11u2) ...\nSelecting previously - unselected package perl.\nPreparing to unpack .../4-perl_5.32.1-4+deb11u2_amd64.deb - ...\nUnpacking perl (5.32.1-4+deb11u2) ...\nSelecting previously unselected - package libcurl3-gnutls:amd64.\nPreparing to unpack .../5-libcurl3-gnutls_7.74.0-1.3+deb11u7_amd64.deb - ...\nUnpacking libcurl3-gnutls:amd64 (7.74.0-1.3+deb11u7) ...\nSelecting previously - unselected package liberror-perl.\nPreparing to unpack .../6-liberror-perl_0.17029-1_all.deb - ...\nUnpacking liberror-perl (0.17029-1) ...\nSelecting previously unselected - package git-man.\nPreparing to unpack .../7-git-man_1%3a2.30.2-1+deb11u2_all.deb - ...\nUnpacking git-man (1:2.30.2-1+deb11u2) ...\nSelecting previously unselected - package git.\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2118' - content-range: - - bytes 7469-9586/9587 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:16 GMT - etag: - - '"0x8DB8D97FE76503B"' - last-modified: - - Wed, 26 Jul 2023 05:20:15 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '15' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:18 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '9587' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:16 GMT - etag: - - '"0x8DB8D97FE76503B"' - last-modified: - - Wed, 26 Jul 2023 05:20:15 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '15' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:21 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '13445' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:18 GMT - etag: - - '"0x8DB8D97FFBF117E"' - last-modified: - - Wed, 26 Jul 2023 05:20:17 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '16' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:21 GMT - x-ms-range: - - bytes=9587-13682 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Preparing to unpack .../8-git_1%3a2.30.2-1+deb11u2_amd64.deb ...\nUnpacking - git (1:2.30.2-1+deb11u2) ...\nSetting up perl-modules-5.32 (5.32.1-4+deb11u2) - ...\nSetting up libcurl3-gnutls:amd64 (7.74.0-1.3+deb11u7) ...\nSetting up - git-man (1:2.30.2-1+deb11u2) ...\nSetting up libgdbm6:amd64 (1.19-2) ...\nSetting - up libgdbm-compat4:amd64 (1.19-2) ...\nSetting up libperl5.32:amd64 (5.32.1-4+deb11u2) - ...\nSetting up perl (5.32.1-4+deb11u2) ...\nSetting up liberror-perl (0.17029-1) - ...\nSetting up git (1:2.30.2-1+deb11u2) ...\nProcessing triggers for libc-bin - (2.31-13+deb11u6) ...\nInstalling nodejs specific dependencies...\n\e[91m+++ - dirname /opt/tmp/images/build/installHugo.sh\n\e[0m\e[91m++ cd /opt/tmp/images/build\n\e[0m\e[91m++ - pwd\n\e[0m\e[91m+ __CURRENT_DIR=/opt/tmp/images/build\n\e[0m\e[91m+ source - /opt/tmp/images/build/../../build/__hugoConstants.sh\n\e[0m\e[91m++ VERSION=0.112.5\n\e[0m\e[91m++ - PLATFORM_NAME=hugo\n\e[0m\e[91m++ INSTALLED_HUGO_VERSIONS_DIR=/opt/hugo\n\e[0m\e[91m++ - INSTALLATION_URL_FORMAT=https://github.com/gohugoio/hugo/releases/download/v#VERSION#/#TAR_FILE#\n++ - TAR_FILE_NAME_FORMAT=hugo_extended_#VERSION#_Linux-64bit.tar.gz\n\e[0m\e[91m++ - CONFIG_FOLDER_NAME=config\n\e[0m\e[91m++ TOML_FILE_NAMES=(\"config.toml\" - \"hugo.toml\")\n\e[0m\e[91m++ YAML_FILE_NAMES=(\"config.yaml\" \"hugo.yaml\")\n++ - YML_FILE_NAMES=(\"config.yml\" \"hugo.yml\")\n++ JSON_FILE_NAMES=(\"config.json\" - \"hugo.json\")\n\e[0m\e[91m++ echo hugo_extended_#VERSION#_Linux-64bit.tar.gz\n\e[0m\e[91m++ - sed s/#VERSION#/0.112.5/g\n\e[0m\e[91m+ fileName=hugo_extended_0.112.5_Linux-64bit.tar.gz\n\e[0m\e[91m++ - echo https://github.com/gohugoio/hugo/releases/download/v#VERSION#/#TAR_FILE#\n\e[0m\e[91m++ - sed s/#VERSION#/0.112.5/g\n\e[0m\e[91m+ url=https://github.com/gohugoio/hugo/releases/download/v0.112.5/#TAR_FILE#\n\e[0m\e[91m++ - echo https://github.com/gohugoio/hugo/releases/download/v0.112.5/#TAR_FILE#\n\e[0m\e[91m++ - sed s/#TAR_FILE#/hugo_extended_0.112.5_Linux-64bit.tar.gz/g\n\e[0m\e[91m+ - url=https://github.com/gohugoio/hugo/releases/download/v0.112.5/hugo_extended_0.112.5_Linux-64bit.tar.gz\n\e[0m\e[91m+ - request='curl -fsSLO --compressed https://github.com/gohugoio/hugo/releases/download/v0.112.5/hugo_extended_0.112.5_Linux-64bit.tar.gz'\n\e[0m\e[91m+ - /opt/tmp/images/retry.sh 'curl -fsSLO --compressed https://github.com/gohugoio/hugo/releases/download/v0.112.5/hugo_extended_0.112.5_Linux-64bit.tar.gz'\n\e[0mretry - 0\n\e[91m+ installationDir=/opt/hugo/0.112.5\n+ mkdir -p /opt/hugo/0.112.5\n\e[0m\e[91m+ - tar -xzf hugo_extended_0.112.5_Linux-64bit.tar.gz -C /opt/hugo/0.112.5\n\e[0m\e[91m+ - rm hugo_extended_0.112.5_Linux-64bit.tar.gz\n\e[0m\e[91m+ ln -s /opt/hugo/0.112.5 - /opt/hugo/lts\n\e[0m\e[91m+ yarnCacheFolder=/usr/local/share/yarn-cache\n\e[0m\e[91m+ - mkdir -p /usr/local/share/yarn-cache\n\e[0m\e[91m+ chmod 777 /usr/local/share/yarn-cache\n\e[0m\e[91m+ - . /opt/tmp/build/__nodeVersions.sh\n\e[0m\e[91m++ NODE_RUNTIME_BASE_TAG=20230707.2\n\e[0m\e[91m++ - YARN_VERSION=1.22.15\n\e[0m\e[91m++ YARN_MINOR_VERSION=1.17\n\e[0m\e[91m++ - YARN_MAJOR_VERSION=1\n\e[0m\e[91m++ NODE6_VERSION=6.17.1\n\e[0m\e[91m++ NODE8_VERSION=8.17.0\n\e[0m\e[91m++ - NODE10_VERSION=10.23.0\n\e[0m\e[91m++ NODE12_VERSION=12.22.12\n\e[0m\e[91m++ - NODE14_VERSION=14.21.3\n\e[0m\e[91m++ NODE16_VERSION=16.20.1\n\e[0m\e[91m++ - NODE18_VERSION=18.16.1\n\e[0m\e[91m++ NODE_APP_INSIGHTS_SDK_VERSION=1.8.7\n++ - PM2_VERSION=4.5.6\n\e[0m\e[91m++ NPM_VERSION=9.6.4\n\e[0m\e[91m+ /opt/tmp/images/receiveGpgKeys.sh - 6A010C5166006599AA17F08146C2130DFD2497F5\n\e[0m\e[91m+ KEY_IDS=6A010C5166006599AA17F08146C2130DFD2497F5\n\e[0m\e[91m+ - '[' 6A010C5166006599AA17F08146C2130DFD2497F5 == '' ']'\n\e[0m\e[91m+ for keyID - in $KEY_IDS\n\e[0m\e[91m+ for i in {1..10}\n+ echo 'Try # 1'\n+ gpg --batch - --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 6A010C5166006599AA17F08146C2130DFD2497F5\n\e[0mTry - # 1\n\e[91mgpg: directory '/root/.gnupg' created\n\e[0m\e[91mgpg: keybox '/root/.gnupg/pubring.kbx' - created\n\e[0m\e[91mgpg: key 1646B01B86E50310: 7 duplicate signatures removed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3858' - content-range: - - bytes 9587-13444/13445 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:18 GMT - etag: - - '"0x8DB8D97FFBF117E"' - last-modified: - - Wed, 26 Jul 2023 05:20:17 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '16' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:21 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '13445' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:19 GMT - etag: - - '"0x8DB8D97FFBF117E"' - last-modified: - - Wed, 26 Jul 2023 05:20:17 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '16' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:23 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '16301' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:21 GMT - etag: - - '"0x8DB8D9801206F25"' - last-modified: - - Wed, 26 Jul 2023 05:20:19 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '17' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:23 GMT - x-ms-range: - - bytes=13445-17540 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "\e[0m\e[91mgpg: /root/.gnupg/trustdb.gpg: trustdb created\n\e[0m\e[91mgpg: - key 1646B01B86E50310: public key \"Yarn Packaging \" imported\n\e[0m\e[91mgpg: - Total number processed: 1\n\e[0m\e[91mgpg: imported: 1\n\e[0m\e[91m+ - '[' '' == '' ']'\n\e[0m\e[91m+ echo 'Received key successfully.'\n+ break\n\e[0mReceived - key successfully.\n\e[91m+ /opt/tmp/images/retry.sh 'curl -fsSLO --compressed - https://yarnpkg.com/downloads/1.22.15/yarn-v1.22.15.tar.gz'\n\e[0mretry 0\n\e[91m+ - /opt/tmp/images/retry.sh 'curl -fsSLO --compressed https://yarnpkg.com/downloads/1.22.15/yarn-v1.22.15.tar.gz.asc'\n\e[0mretry - 0\n\e[91m+ gpg --batch --verify yarn-v1.22.15.tar.gz.asc yarn-v1.22.15.tar.gz\n\e[0m\e[91mgpg: - Signature made Thu Sep 30 00:14:59 2021 UTC\n\e[0m\e[91mgpg: using - RSA key 6D98490C6F1ACDDD448E45954F77679369475BAA\n\e[0m\e[91mgpg: Good signature - from \"Yarn Packaging \" [unknown]\n\e[0m\e[91mgpg: WARNING: - This key is not certified with a trusted signature!\n\e[0m\e[91mgpg: There - is no indication that the signature belongs to the owner.\n\e[0m\e[91mPrimary - key fingerprint: 72EC F46A 56B4 AD39 C907 BBB7 1646 B01B 86E5 0310\n\e[0m\e[91m - \ Subkey fingerprint: 6D98 490C 6F1A CDDD 448E 4595 4F77 6793 6947 5BAA\n\e[0m\e[91m+ - mkdir -p /opt/yarn\n\e[0m\e[91m+ tar -xzf yarn-v1.22.15.tar.gz -C /opt/yarn\n\e[0m\e[91m+ - mv /opt/yarn/yarn-v1.22.15 /opt/yarn/1.22.15\n\e[0m\e[91m+ rm yarn-v1.22.15.tar.gz.asc - yarn-v1.22.15.tar.gz\n\e[0m\e[91m+ . /opt/tmp/build/__nodeVersions.sh\n\e[0m\e[91m++ - NODE_RUNTIME_BASE_TAG=20230707.2\n\e[0m\e[91m++ YARN_VERSION=1.22.15\n++ YARN_MINOR_VERSION=1.17\n\e[0m\e[91m++ - YARN_MAJOR_VERSION=1\n++ NODE6_VERSION=6.17.1\n\e[0m\e[91m++ NODE8_VERSION=8.17.0\n\e[0m\e[91m++ - NODE10_VERSION=10.23.0\n++ NODE12_VERSION=12.22.12\n++ NODE14_VERSION=14.21.3\n\e[0m\e[91m++ - NODE16_VERSION=16.20.1\n\e[0m\e[91m++ NODE18_VERSION=18.16.1\n++ NODE_APP_INSIGHTS_SDK_VERSION=1.8.7\n++ - PM2_VERSION=4.5.6\n\e[0m\e[91m++ NPM_VERSION=9.6.4\n\e[0m\e[91m+ ln -s 1.22.15 - /opt/yarn/stable\n\e[0m\e[91m+ ln -s 1.22.15 /opt/yarn/latest\n\e[0m\e[91m+ - ln -s 1.22.15 /opt/yarn/1.17\n\e[0m\e[91m+ ln -s 1.17 /opt/yarn/1\n\e[0m\e[91m+ - mkdir -p /links\n\e[0m\e[91m+ cp -s /opt/yarn/stable/bin/yarn /opt/yarn/stable/bin/yarnpkg - /links\n\e[0m\e[91m+ echo 'Installing python tooling and language...'\n\e[0mInstalling - python tooling and language...\n\e[91m+ PYTHONIOENCODING=UTF-8\n+ apt-get - update\n\e[0mGet:1 http://deb.debian.org/debian bullseye InRelease [116 kB]\nGet:2 - http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB]\nGet:3 - http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]\nGet:4 http://deb.debian.org/debian - bullseye/main amd64 Packages [8183 kB]\nGet:5 http://deb.debian.org/debian-security - bullseye-security/main amd64 Packages [252 kB]\nGet:6 http://deb.debian.org/debian - bullseye-updates/main amd64 Packages [14.8 kB]\nFetched 8658 kB in 1s (6905 - kB/s)\nReading package lists...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2856' - content-range: - - bytes 13445-16300/16301 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:21 GMT - etag: - - '"0x8DB8D9801206F25"' - last-modified: - - Wed, 26 Jul 2023 05:20:19 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '17' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:23 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '19527' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:21 GMT - etag: - - '"0x8DB8D9802817F00"' - last-modified: - - Wed, 26 Jul 2023 05:20:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '18' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:23 GMT - x-ms-range: - - bytes=16301-20396 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "\e[91m+ apt-get upgrade -y\n\e[0mReading package lists...\nBuilding - dependency tree...\nReading state information...\nCalculating upgrade...\n0 - upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n\e[91m+ apt-get - install -y --no-install-recommends make unzip libpq-dev moreutils python3-pip - swig unixodbc-dev build-essential gdb lcov pkg-config libbz2-dev libffi-dev - libgdbm-dev liblzma-dev libncurses5-dev libreadline6-dev libsqlite3-dev libssl-dev - lzma lzma\e[0m\e[91m-dev tk-dev uuid-dev zlib1g-dev\n\e[0mReading package - lists...\nBuilding dependency tree...\nReading state information...\nzlib1g-dev - is already the newest version (1:1.2.11.dfsg-2+deb11u2).\nzlib1g-dev set to - manually installed.\nlibssl-dev is already the newest version (1.1.1n-0+deb11u5).\nlibssl-dev - set to manually installed.\nThe following additional packages will be installed:\n - \ autoconf automake autotools-dev binutils binutils-common\n binutils-x86-64-linux-gnu - bzip2 cpp cpp-10 dpkg-dev g++ g++-10 gcc gcc-10\n libasan6 libatomic1 libbabeltrace1 - libbinutils libboost-regex1.74.0\n libbrotli-dev libcc1-0 libctf-nobfd0 libctf0 - libdebuginfod1 libdpkg-perl\n libdw1 libelf1 libexpat1-dev libfontconfig-dev - libfontconfig1-dev\n libfreetype-dev libfreetype6-dev libgcc-10-dev libgomp1 - libio-pty-perl\n libipc-run-perl libipt2 libisl23 libitm1 libjson-perl liblsan0 - libltdl-dev\n libltdl7 libmpc3 libmpdec3 libmpfr6 libncurses-dev libncurses6 - libodbc1\n libperlio-gzip-perl libpng-dev libpq5 libpthread-stubs0-dev\n - \ libpython3-stdlib libpython3.9 libpython3.9-minimal libpython3.9-stdlib\n - \ libquadmath0 libsigsegv2 libsource-highlight-common libsource-highlight4v5\n - \ libstdc++-10-dev libtcl8.6 libtime-duration-perl libtimedate-perl libtk8.6\n - \ libtsan0 libubsan1 libx11-dev libxau-dev libxcb1-dev libxdmcp-dev\n libxext-dev - libxft-dev libxft2 libxrender-dev libxss-dev libxss1 m4\n media-types odbcinst - odbcinst1debian2 patch python-pip-whl python3\n python3-distutils python3-lib2to3 - python3-minimal python3-pkg-resources\n python3-setuptools python3-wheel - python3.9 python3.9-minimal swig4.0 tcl\n tcl-dev tcl8.6 tcl8.6-dev tk tk8.6 - tk8.6-dev x11-common x11proto-core-dev\n x11proto-dev x11proto-scrnsaver-dev - x11proto-xext-dev xorg-sgml-doctools\n xtrans-dev xz-utils\nSuggested packages:\n - \ autoconf-archive gnu-standards autoconf-doc libtool gettext binutils-doc\n - \ bzip2-doc cpp-doc gcc-10-locales debian-keyring g++-multilib g++-10-multilib\n - \ gcc-10-doc gcc-multilib manpages-dev flex bison gcc-doc gcc-10-multilib\n - \ gdb-doc gdbserver bzr freetype2-doc libtool-doc liblzma-doc ncurses-doc\n - \ libmyodbc odbc-postgresql tdsodbc unixodbc-bin postgresql-doc-13\n readline-doc - sqlite3-doc libstdc++-10-doc libx11-doc libxcb-doc libxext-doc\n m4-doc make-doc - ed diffutils-doc python3-doc python3-tk python3-venv\n python-setuptools-doc - python3.9-venv python3.9-doc binfmt-support swig-doc\n swig-examples swig4.0-examples - swig4.0-doc tcl-doc tcl-tclreadline\n tcl8.6-doc tk-doc tk8.6-doc zip\nRecommended - packages:\n fakeroot libalgorithm-merge-perl libc-dbg libgd-gd2-perl bzip2-doc\n - \ libfile-fcntllock-perl liblocale-gettext-perl libjson-xs-perl libtool\n - \ libgpm2 libpng-tools python3-dev xterm | x-terminal-emulator\nThe following - NEW packages will be installed:\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3226' - content-range: - - bytes 16301-19526/19527 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:21 GMT - etag: - - '"0x8DB8D9802817F00"' - last-modified: - - Wed, 26 Jul 2023 05:20:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '18' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:23 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '19527' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:21 GMT - etag: - - '"0x8DB8D9802817F00"' - last-modified: - - Wed, 26 Jul 2023 05:20:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '18' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:26 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '27779' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:23 GMT - etag: - - '"0x8DB8D9802EB3B85"' - last-modified: - - Wed, 26 Jul 2023 05:20:22 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '19' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:26 GMT - x-ms-range: - - bytes=19527-23622 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: " autoconf automake autotools-dev binutils binutils-common\n binutils-x86-64-linux-gnu - build-essential bzip2 cpp cpp-10 dpkg-dev g++\n g++-10 gcc gcc-10 gdb lcov - libasan6 libatomic1 libbabeltrace1 libbinutils\n libboost-regex1.74.0 libbrotli-dev - libbz2-dev libcc1-0 libctf-nobfd0 libctf0\n libdebuginfod1 libdpkg-perl libdw1 - libelf1 libexpat1-dev libffi-dev\n libfontconfig-dev libfontconfig1-dev libfreetype-dev - libfreetype6-dev\n libgcc-10-dev libgdbm-dev libgomp1 libio-pty-perl libipc-run-perl - libipt2\n libisl23 libitm1 libjson-perl liblsan0 libltdl-dev libltdl7 liblzma-dev\n - \ libmpc3 libmpdec3 libmpfr6 libncurses-dev libncurses5-dev libncurses6\n - \ libodbc1 libperlio-gzip-perl libpng-dev libpq-dev libpq5\n libpthread-stubs0-dev - libpython3-stdlib libpython3.9 libpython3.9-minimal\n libpython3.9-stdlib - libquadmath0 libreadline-dev libsigsegv2\n libsource-highlight-common libsource-highlight4v5 - libsqlite3-dev\n libstdc++-10-dev libtcl8.6 libtime-duration-perl libtimedate-perl - libtk8.6\n libtsan0 libubsan1 libx11-dev libxau-dev libxcb1-dev libxdmcp-dev\n - \ libxext-dev libxft-dev libxft2 libxrender-dev libxss-dev libxss1 lzma\n - \ lzma-dev m4 make media-types moreutils odbcinst odbcinst1debian2 patch\n - \ pkg-config python-pip-whl python3 python3-distutils python3-lib2to3\n python3-minimal - python3-pip python3-pkg-resources python3-setuptools\n python3-wheel python3.9 - python3.9-minimal swig swig4.0 tcl tcl-dev tcl8.6\n tcl8.6-dev tk tk-dev - tk8.6 tk8.6-dev unixodbc-dev unzip uuid-dev x11-common\n x11proto-core-dev - x11proto-dev x11proto-scrnsaver-dev x11proto-xext-dev\n xorg-sgml-doctools - xtrans-dev xz-utils\n0 upgraded, 131 newly installed, 0 to remove and 0 not - upgraded.\nNeed to get 87.8 MB of archives.\nAfter this operation, 309 MB - of additional disk space will be used.\nGet:1 http://deb.debian.org/debian - bullseye/main amd64 libpython3.9-minimal amd64 3.9.2-1 [801 kB]\nGet:2 http://deb.debian.org/debian - bullseye/main amd64 python3.9-minimal amd64 3.9.2-1 [1955 kB]\nGet:3 http://deb.debian.org/debian - bullseye/main amd64 python3-minimal amd64 3.9.2-3 [38.2 kB]\nGet:4 http://deb.debian.org/debian - bullseye/main amd64 media-types all 4.0.0 [30.3 kB]\nGet:5 http://deb.debian.org/debian - bullseye/main amd64 libmpdec3 amd64 2.5.1-1 [87.7 kB]\nGet:6 http://deb.debian.org/debian - bullseye/main amd64 libpython3.9-stdlib amd64 3.9.2-1 [1684 kB]\nGet:7 http://deb.debian.org/debian - bullseye/main amd64 python3.9 amd64 3.9.2-1 [466 kB]\nGet:8 http://deb.debian.org/debian - bullseye/main amd64 libpython3-stdlib amd64 3.9.2-3 [21.4 kB]\nGet:9 http://deb.debian.org/debian - bullseye/main amd64 python3 amd64 3.9.2-3 [37.9 kB]\nGet:10 http://deb.debian.org/debian - bullseye/main amd64 bzip2 amd64 1.0.8-4 [49.3 kB]\nGet:11 http://deb.debian.org/debian - bullseye/main amd64 xz-utils amd64 5.2.5-2.1~deb11u1 [220 kB]\nGet:12 http://deb.debian.org/debian - bullseye/main amd64 libsigsegv2 amd64 2.13-1 [34.8 kB]\nGet:13 http://deb.debian.org/debian - bullseye/main amd64 m4 amd64 1.4.18-5 [204 kB]\nGet:14 http://deb.debian.org/debian - bullseye/main amd64 autoconf all 2.69-14 [313 kB]\nGet:15 http://deb.debian.org/debian - bullseye/main amd64 autotools-dev all 20180224.1+nmu1 [77.1 kB]\nGet:16 http://deb.debian.org/debian - bullseye/main amd64 automake all 1:1.16.3-2 [814 kB]\nGet:17 http://deb.debian.org/debian - bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB]\nGet:18 http://deb.debian.org/debian - bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB]\nGet:19 http://deb.debian.org/debian - bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB]\nGet:20 http://deb.debian.org/debian - bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB]\nGet:21 http://deb.debian.org/debian - bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB]\nGet:22 - http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 - kB]\nGet:23 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 - 0.23-1 [676 kB]\nGet:24 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 - amd64 4.1.0-3 [2012 kB]\nGet:25 http://deb.debian.org/debian bullseye/main - amd64 libmpc3 amd64 1.2.0-1 [45.0 kB]\nGet:26 ht" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 19527-23622/35994 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:23 GMT - etag: - - '"0x8DB8D9803F64ECD"' - last-modified: - - Wed, 26 Jul 2023 05:20:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:26 GMT - x-ms-range: - - bytes=23623-27718 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: 'tp://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 - [8528 kB] - - Get:27 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 - [19.7 kB] - - Get:28 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 - [47.0 kB] - - Get:29 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 - [99.9 kB] - - Get:30 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 - [25.8 kB] - - Get:31 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 - [9008 B] - - Get:32 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 - [2065 kB] - - Get:33 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 - [828 kB] - - Get:34 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 - [2000 kB] - - Get:35 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 - [777 kB] - - Get:36 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 - 10.2.1-6 [145 kB] - - Get:37 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 - 10.2.1-6 [2328 kB] - - Get:38 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 - [17.0 MB] - - Get:39 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 - [5192 B] - - Get:40 http://deb.debian.org/debian bullseye/main amd64 libstdc++-10-dev amd64 - 10.2.1-6 [1741 kB] - - Get:41 http://deb.debian.org/debian bullseye/main amd64 g++-10 amd64 10.2.1-6 - [9380 kB] - - Get:42 http://deb.debian.org/debian bullseye/main amd64 g++ amd64 4:10.2.1-1 - [1644 B] - - Get:43 http://deb.debian.org/debian bullseye/main amd64 make amd64 4.3-4.1 - [396 kB] - - Get:44 http://deb.debian.org/debian bullseye/main amd64 libdpkg-perl all 1.20.12 - [1551 kB] - - Get:45 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 - [128 kB] - - Get:46 http://deb.debian.org/debian bullseye/main amd64 dpkg-dev all 1.20.12 - [2312 kB] - - Get:47 http://deb.debian.org/debian bullseye/main amd64 build-essential amd64 - 12.9 [7704 B] - - Get:48 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 - [165 kB] - - Get:49 http://deb.debian.org/debian bullseye/main amd64 libdw1 amd64 0.183-1 - [234 kB] - - Get:50 http://deb.debian.org/debian bullseye/main amd64 libbabeltrace1 amd64 - 1.5.8-1+b3 [174 kB] - - Get:51 http://deb.debian.org/debian bullseye/main amd64 libdebuginfod1 amd64 - 0.183-1 [27.4 kB] - - Get:52 http://deb.debian.org/debian bullseye/main amd64 libipt2 amd64 2.0.3-1 - [43.7 kB] - - Get:53 http://deb.debian.org/debian bullseye/main amd64 libpython3.9 amd64 - 3.9.2-1 [1691 kB] - - Get:54 http://deb.debian.org/debian bullseye/main amd64 libsource-highlight-common - all 3.1.9-3 [79.7 kB] - - Get:55 http://deb.debian.org/debian bullseye/main amd64 libboost-regex1.74.0 - amd64 1.74.0-9 [516 kB] - - Get:56 http://deb.debian.org/debian bullseye/main amd64 libsource-highlight4v5 - amd64 3.1.9-3+b1 [259 kB] - - Get:57 http://deb.debian.org/debian bullseye/main amd64 gdb amd64 10.1-1.7 - [3395 kB] - - Get:58 http://deb.debian.org/debian bullseye/main amd64 libjson-perl all 4.03000-1 - [88.6 kB] - - Get:59 http://deb.debian.org/debian bullseye/main amd64 libperlio-gzip-perl - amd64 0.19-1+b7 [17.4 kB] - - Get:60 http://deb.debian.org/debian bullseye/main amd64 lcov all 1.14-2 [138 - kB] - - Get:61 http://deb.debian.org/debian bullseye/main amd64 libbrotli-dev amd64 - 1.0.9-2+b2 [288 kB] - - Get:62 http://deb.debian.org/debian bullseye/main amd64 libbz2-dev amd64 1.0.8-4 - [30.1 kB] - - Get:63 http://deb.debian.org/debian bullseye/main amd64 libexpat1-dev amd64 - 2.2.10-2+deb11u5 [141 kB] - - Get:64 http://deb.debian.org/debian bullseye/main amd64 libffi-dev amd64 3.3-6 - [56.5 kB] - - Get:65 http://deb.debian.org/debian bullseye/main amd64 libpng-dev amd64 1.6.37-3 - [298 kB] - - Get:66 http://deb.debian.org/debian bullseye/main amd64 libfreetype-dev amd64 - 2.10.4+dfsg-1+deb11u1 [571 kB] - - Get:67 http://deb.debian.org/debian bullseye/main amd64 libfreetype6-dev amd64 - 2.10.4+dfsg-1+deb11u1 [82.6 kB] - - Get:68 http://deb.debian.org/debian bullseye/main amd64 uuid-dev amd64 2.36.1-8+deb11u1 - [99.4 kB] - - Get:69 http://deb.debian.org/debian bullseye/main amd64 pkg-config amd64 0.29.2-1 - [65.1 kB] - - Get:70 http://deb.debian.org/debian bulls' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 23623-27718/35994 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:23 GMT - etag: - - '"0x8DB8D9803F64ECD"' - last-modified: - - Wed, 26 Jul 2023 05:20:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:26 GMT - x-ms-range: - - bytes=27719-31814 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "eye/main amd64 libfontconfig-dev amd64 2.13.1-4.2 [368 kB]\r\nGet:71 - http://deb.debian.org/debian bullseye/main amd64 libfontconfig1-dev amd64 - 2.13.1-4.2 [238 kB]\nGet:72 http://deb.debian.org/debian bullseye/main amd64 - libgdbm-dev amd64 1.19-2 [130 kB]\nGet:73 http://deb.debian.org/debian bullseye/main - amd64 libio-pty-perl amd64 1:1.15-2 [37.0 kB]\nGet:74 http://deb.debian.org/debian - bullseye/main amd64 libipc-run-perl all 20200505.0-1 [102 kB]\nGet:75 http://deb.debian.org/debian - bullseye/main amd64 libltdl7 amd64 2.4.6-15 [391 kB]\nGet:76 http://deb.debian.org/debian - bullseye/main amd64 libltdl-dev amd64 2.4.6-15 [162 kB]\nGet:77 http://deb.debian.org/debian - bullseye/main amd64 liblzma-dev amd64 5.2.5-2.1~deb11u1 [229 kB]\nGet:78 http://deb.debian.org/debian - bullseye/main amd64 libncurses6 amd64 6.2+20201114-2+deb11u1 [102 kB]\nGet:79 - http://deb.debian.org/debian bullseye/main amd64 libncurses-dev amd64 6.2+20201114-2+deb11u1 - [344 kB]\nGet:80 http://deb.debian.org/debian bullseye/main amd64 libncurses5-dev - amd64 6.2+20201114-2+deb11u1 [948 B]\nGet:81 http://deb.debian.org/debian - bullseye/main amd64 libodbc1 amd64 2.3.6-0.1+b1 [224 kB]\nGet:82 http://deb.debian.org/debian-security - bullseye-security/main amd64 libpq5 amd64 13.11-0+deb11u1 [180 kB]\nGet:83 - http://deb.debian.org/debian-security bullseye-security/main amd64 libpq-dev - amd64 13.11-0+deb11u1 [140 kB]\nGet:84 http://deb.debian.org/debian bullseye/main - amd64 libpthread-stubs0-dev amd64 0.4-1 [5344 B]\nGet:85 http://deb.debian.org/debian - bullseye/main amd64 libreadline-dev amd64 8.1-1 [148 kB]\nGet:86 http://deb.debian.org/debian - bullseye/main amd64 libsqlite3-dev amd64 3.34.1-3 [963 kB]\nGet:87 http://deb.debian.org/debian - bullseye/main amd64 libtcl8.6 amd64 8.6.11+dfsg-1 [1018 kB]\nGet:88 http://deb.debian.org/debian - bullseye/main amd64 libtime-duration-perl all 1.21-1 [13.7 kB]\nGet:89 http://deb.debian.org/debian - bullseye/main amd64 libtimedate-perl all 2.3300-2 [39.3 kB]\nGet:90 http://deb.debian.org/debian - bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB]\nGet:91 http://deb.debian.org/debian - bullseye/main amd64 x11-common all 1:7.7+22 [252 kB]\nGet:92 http://deb.debian.org/debian - bullseye/main amd64 libxss1 amd64 1:1.2.3-1 [17.8 kB]\nGet:93 http://deb.debian.org/debian - bullseye/main amd64 libtk8.6 amd64 8.6.11-2 [780 kB]\nGet:94 http://deb.debian.org/debian - bullseye/main amd64 xorg-sgml-doctools all 1:1.11-1.1 [22.1 kB]\nGet:95 http://deb.debian.org/debian - bullseye/main amd64 x11proto-dev all 2020.1-1 [594 kB]\nGet:96 http://deb.debian.org/debian - bullseye/main amd64 libxau-dev amd64 1:1.0.9-1 [22.9 kB]\nGet:97 http://deb.debian.org/debian - bullseye/main amd64 x11proto-core-dev all 2020.1-1 [3404 B]\nGet:98 http://deb.debian.org/debian - bullseye/main amd64 libxdmcp-dev amd64 1:1.1.2-3 [42.2 kB]\nGet:99 http://deb.debian.org/debian - bullseye/main amd64 xtrans-dev all 1.4.0-1 [98.7 kB]\nGet:100 http://deb.debian.org/debian - bullseye/main amd64 libxcb1-dev amd64 1.14-3 [176 kB]\nGet:101 http://deb.debian.org/debian-security - bullseye-security/main amd64 libx11-dev amd64 2:1.7.2-1+deb11u1 [843 kB]\nGet:102 - http://deb.debian.org/debian bullseye/main amd64 x11proto-xext-dev all 2020.1-1 - [3404 B]\nGet:103 http://deb.debian.org/debian bullseye/main amd64 libxext-dev - amd64 2:1.3.3-1.1 [107 kB]\nGet:104 http://deb.debian.org/debian bullseye/main - amd64 libxrender-dev amd64 1:0.9.10-1 [40.8 kB]\nGet:105 http://deb.debian.org/debian - bullseye/main amd64 libxft-dev amd64 2.3.2-2 [68.7 kB]\nGet:106 http://deb.debian.org/debian - bullseye/main amd64 x11proto-scrnsaver-dev all 2020.1-1 [3412 B]\nGet:107 - http://deb.debian.org/debian bullseye/main amd64 libxss-dev amd64 1:1.2.3-1 - [23.5 kB]\nGet:108 http://deb.debian.org/debian bullseye/main amd64 lzma amd64 - 9.22-2.2 [49.6 kB]\nGet:109 http://deb.debian.org/debian bullseye/main amd64 - lzma-dev all 9.22-2.2 [44.8 kB]\nGet:110 http://deb.debian.org/debian bullseye/main - amd64 moreutils amd64 0.65-1 [75.5 kB]\nGet:111 http://deb.debian.org/debian - bullseye/main amd64 odbcinst1debian2 amd64 2.3.6-0.1+b1 [78.6 kB]\nGet:112 - http://deb.debian.org/debian bullseye/main amd64 odbcinst am" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 27719-31814/35994 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:24 GMT - etag: - - '"0x8DB8D9803F64ECD"' - last-modified: - - Wed, 26 Jul 2023 05:20:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:26 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '35994' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:24 GMT - etag: - - '"0x8DB8D9803F64ECD"' - last-modified: - - Wed, 26 Jul 2023 05:20:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:26 GMT - x-ms-range: - - bytes=31815-35910 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "d64 2.3.6-0.1+b1 [48.7 kB]\nGet:113 http://deb.debian.org/debian bullseye/main - amd64 python-pip-whl all 20.3.4-4+deb11u1 [1948 kB]\nGet:114 http://deb.debian.org/debian - bullseye/main amd64 python3-lib2to3 all 3.9.2-1 [77.8 kB]\nGet:115 http://deb.debian.org/debian - bullseye/main amd64 python3-distutils all 3.9.2-1 [143 kB]\nGet:116 http://deb.debian.org/debian - bullseye/main amd64 python3-pkg-resources all 52.0.0-4 [190 kB]\nGet:117 http://deb.debian.org/debian - bullseye/main amd64 python3-setuptools all 52.0.0-4 [366 kB]\nGet:118 http://deb.debian.org/debian - bullseye/main amd64 python3-wheel all 0.34.2-1 [24.0 kB]\nGet:119 http://deb.debian.org/debian - bullseye/main amd64 python3-pip all 20.3.4-4+deb11u1 [337 kB]\nGet:120 http://deb.debian.org/debian - bullseye/main amd64 swig4.0 amd64 4.0.2-1 [1377 kB]\nGet:121 http://deb.debian.org/debian - bullseye/main amd64 swig all 4.0.2-1 [330 kB]\nGet:122 http://deb.debian.org/debian - bullseye/main amd64 tcl8.6 amd64 8.6.11+dfsg-1 [124 kB]\nGet:123 http://deb.debian.org/debian - bullseye/main amd64 tcl amd64 8.6.11+1 [5788 B]\nGet:124 http://deb.debian.org/debian - bullseye/main amd64 tcl8.6-dev amd64 8.6.11+dfsg-1 [1018 kB]\nGet:125 http://deb.debian.org/debian - bullseye/main amd64 tcl-dev amd64 8.6.11+1 [8360 B]\nGet:126 http://deb.debian.org/debian - bullseye/main amd64 tk8.6 amd64 8.6.11-2 [72.3 kB]\nGet:127 http://deb.debian.org/debian - bullseye/main amd64 tk amd64 8.6.11+1 [5828 B]\nGet:128 http://deb.debian.org/debian - bullseye/main amd64 tk8.6-dev amd64 8.6.11-2 [777 kB]\nGet:129 http://deb.debian.org/debian - bullseye/main amd64 tk-dev amd64 8.6.11+1 [5656 B]\nGet:130 http://deb.debian.org/debian - bullseye/main amd64 unixodbc-dev amd64 2.3.6-0.1+b1 [262 kB]\nGet:131 http://deb.debian.org/debian - bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB]\n\e[91mdebconf: delaying - package configuration, since apt-utils is not installed\n\e[0mFetched 87.8 - MB in 1s (103 MB/s)\nSelecting previously unselected package libpython3.9-minimal:amd64.\n(Reading - database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading - database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading - database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading - database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading - database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading - database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading - database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading - database ... 13069 files and directories currently installed.)\nPreparing - to unpack .../libpython3.9-minimal_3.9.2-1_amd64.deb ...\nUnpacking libpython3.9-minimal:amd64 - (3.9.2-1) ...\nSelecting previously unselected package python3.9-minimal.\nPreparing - to unpack .../python3.9-minimal_3.9.2-1_amd64.deb ...\nUnpacking python3.9-minimal - (3.9.2-1) ...\nSetting up libpython3.9-minimal:amd64 (3.9.2-1) ...\nSetting - up python3.9-minimal (3.9.2-1) ...\nSelecting previously unselected package - python3-minimal.\n(Reading database ... \n(Reading database ... 5%\n(Reading - database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading - database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading - database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading - database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading - database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading - database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading - database ... 100%\n(Reading database ... 13354 files and directories currently - installed.)\nPreparing to unpack .../0-python3-minimal_3.9.2-3_amd64.deb ...\nUnpacking - python3-minimal (3.9.2-3) ...\nSelecting previously unselected package media-types.\nPreparing - to unpack .../1-media-types_4.0.0_all.deb ...\nUnpacking media-types (4.0.0) - ...\nSelecting previously unselected package libmpdec3:amd64.\nPreparing to - unpack .../2-libmpdec3_2.5.1-1_amd64.deb ...\nUnpacking libmpdec3:amd64 (2.5.1-1) - ...\nSelecting previously unselected package libpython3.9-" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 31815-35910/35994 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:24 GMT - etag: - - '"0x8DB8D9803F64ECD"' - last-modified: - - Wed, 26 Jul 2023 05:20:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:26 GMT - x-ms-range: - - bytes=35911-40006 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "stdlib:amd64.\nPreparing to unpack .../3-libpython3.9-stdlib_3.9.2-1_amd64.deb - ...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '83' - content-range: - - bytes 35911-35993/35994 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:24 GMT - etag: - - '"0x8DB8D9803F64ECD"' - last-modified: - - Wed, 26 Jul 2023 05:20:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:26 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '35994' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:24 GMT - etag: - - '"0x8DB8D9803F64ECD"' - last-modified: - - Wed, 26 Jul 2023 05:20:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '20' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:28 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '39114' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:26 GMT - etag: - - '"0x8DB8D980530A153"' - last-modified: - - Wed, 26 Jul 2023 05:20:26 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '21' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:28 GMT - x-ms-range: - - bytes=35994-40089 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Unpacking libpython3.9-stdlib:amd64 (3.9.2-1) ...\nSelecting previously - unselected package python3.9.\nPreparing to unpack .../4-python3.9_3.9.2-1_amd64.deb - ...\nUnpacking python3.9 (3.9.2-1) ...\nSelecting previously unselected package - libpython3-stdlib:amd64.\nPreparing to unpack .../5-libpython3-stdlib_3.9.2-3_amd64.deb - ...\nUnpacking libpython3-stdlib:amd64 (3.9.2-3) ...\nSetting up python3-minimal - (3.9.2-3) ...\nSelecting previously unselected package python3.\n(Reading - database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading - database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading - database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading - database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading - database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading - database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading - database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading - database ... 13751 files and directories currently installed.)\nPreparing - to unpack .../000-python3_3.9.2-3_amd64.deb ...\nUnpacking python3 (3.9.2-3) - ...\nSelecting previously unselected package bzip2.\nPreparing to unpack .../001-bzip2_1.0.8-4_amd64.deb - ...\nUnpacking bzip2 (1.0.8-4) ...\nSelecting previously unselected package - xz-utils.\nPreparing to unpack .../002-xz-utils_5.2.5-2.1~deb11u1_amd64.deb - ...\nUnpacking xz-utils (5.2.5-2.1~deb11u1) ...\nSelecting previously unselected - package libsigsegv2:amd64.\nPreparing to unpack .../003-libsigsegv2_2.13-1_amd64.deb - ...\nUnpacking libsigsegv2:amd64 (2.13-1) ...\nSelecting previously unselected - package m4.\nPreparing to unpack .../004-m4_1.4.18-5_amd64.deb ...\nUnpacking - m4 (1.4.18-5) ...\nSelecting previously unselected package autoconf.\nPreparing - to unpack .../005-autoconf_2.69-14_all.deb ...\nUnpacking autoconf (2.69-14) - ...\nSelecting previously unselected package autotools-dev.\nPreparing to - unpack .../006-autotools-dev_20180224.1+nmu1_all.deb ...\nUnpacking autotools-dev - (20180224.1+nmu1) ...\nSelecting previously unselected package automake.\nPreparing - to unpack .../007-automake_1%3a1.16.3-2_all.deb ...\nUnpacking automake (1:1.16.3-2) - ...\nSelecting previously unselected package binutils-common:amd64.\nPreparing - to unpack .../008-binutils-common_2.35.2-2_amd64.deb ...\nUnpacking binutils-common:amd64 - (2.35.2-2) ...\nSelecting previously unselected package libbinutils:amd64.\nPreparing - to unpack .../009-libbinutils_2.35.2-2_amd64.deb ...\nUnpacking libbinutils:amd64 - (2.35.2-2) ...\nSelecting previously unselected package libctf-nobfd0:amd64.\nPreparing - to unpack .../010-libctf-nobfd0_2.35.2-2_amd64.deb ...\nUnpacking libctf-nobfd0:amd64 - (2.35.2-2) ...\nSelecting previously unselected package libctf0:amd64.\nPreparing - to unpack .../011-libctf0_2.35.2-2_amd64.deb ...\nUnpacking libctf0:amd64 - (2.35.2-2) ...\nSelecting previously unselected package binutils-x86-64-linux-gnu.\nPreparing - to unpack .../012-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ...\nUnpacking - binutils-x86-64-linux-gnu (2.35.2-2) ...\nSelecting previously unselected - package binutils.\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3120' - content-range: - - bytes 35994-39113/39114 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:26 GMT - etag: - - '"0x8DB8D980530A153"' - last-modified: - - Wed, 26 Jul 2023 05:20:26 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '21' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:29 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '39114' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:26 GMT - etag: - - '"0x8DB8D980530A153"' - last-modified: - - Wed, 26 Jul 2023 05:20:26 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '21' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:31 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '40778' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:29 GMT - etag: - - '"0x8DB8D98066BDD39"' - last-modified: - - Wed, 26 Jul 2023 05:20:28 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '22' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:31 GMT - x-ms-range: - - bytes=39114-43209 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Preparing to unpack .../013-binutils_2.35.2-2_amd64.deb ...\nUnpacking - binutils (2.35.2-2) ...\nSelecting previously unselected package libisl23:amd64.\nPreparing - to unpack .../014-libisl23_0.23-1_amd64.deb ...\nUnpacking libisl23:amd64 - (0.23-1) ...\nSelecting previously unselected package libmpfr6:amd64.\nPreparing - to unpack .../015-libmpfr6_4.1.0-3_amd64.deb ...\nUnpacking libmpfr6:amd64 - (4.1.0-3) ...\nSelecting previously unselected package libmpc3:amd64.\nPreparing - to unpack .../016-libmpc3_1.2.0-1_amd64.deb ...\nUnpacking libmpc3:amd64 (1.2.0-1) - ...\nSelecting previously unselected package cpp-10.\nPreparing to unpack - .../017-cpp-10_10.2.1-6_amd64.deb ...\nUnpacking cpp-10 (10.2.1-6) ...\nSelecting - previously unselected package cpp.\nPreparing to unpack .../018-cpp_4%3a10.2.1-1_amd64.deb - ...\nUnpacking cpp (4:10.2.1-1) ...\nSelecting previously unselected package - libcc1-0:amd64.\nPreparing to unpack .../019-libcc1-0_10.2.1-6_amd64.deb ...\nUnpacking - libcc1-0:amd64 (10.2.1-6) ...\nSelecting previously unselected package libgomp1:amd64.\nPreparing - to unpack .../020-libgomp1_10.2.1-6_amd64.deb ...\nUnpacking libgomp1:amd64 - (10.2.1-6) ...\nSelecting previously unselected package libitm1:amd64.\nPreparing - to unpack .../021-libitm1_10.2.1-6_amd64.deb ...\nUnpacking libitm1:amd64 - (10.2.1-6) ...\nSelecting previously unselected package libatomic1:amd64.\nPreparing - to unpack .../022-libatomic1_10.2.1-6_amd64.deb ...\nUnpacking libatomic1:amd64 - (10.2.1-6) ...\nSelecting previously unselected package libasan6:amd64.\nPreparing - to unpack .../023-libasan6_10.2.1-6_amd64.deb ...\nUnpacking libasan6:amd64 - (10.2.1-6) ...\nSelecting previously unselected package liblsan0:amd64.\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1664' - content-range: - - bytes 39114-40777/40778 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:29 GMT - etag: - - '"0x8DB8D98066BDD39"' - last-modified: - - Wed, 26 Jul 2023 05:20:28 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '22' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:31 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '40778' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:29 GMT - etag: - - '"0x8DB8D98066BDD39"' - last-modified: - - Wed, 26 Jul 2023 05:20:28 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '22' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:34 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '41716' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:32 GMT - etag: - - '"0x8DB8D980806F5AD"' - last-modified: - - Wed, 26 Jul 2023 05:20:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '23' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:34 GMT - x-ms-range: - - bytes=40778-44873 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Preparing to unpack .../024-liblsan0_10.2.1-6_amd64.deb ...\nUnpacking - liblsan0:amd64 (10.2.1-6) ...\nSelecting previously unselected package libtsan0:amd64.\nPreparing - to unpack .../025-libtsan0_10.2.1-6_amd64.deb ...\nUnpacking libtsan0:amd64 - (10.2.1-6) ...\nSelecting previously unselected package libubsan1:amd64.\nPreparing - to unpack .../026-libubsan1_10.2.1-6_amd64.deb ...\nUnpacking libubsan1:amd64 - (10.2.1-6) ...\nSelecting previously unselected package libquadmath0:amd64.\nPreparing - to unpack .../027-libquadmath0_10.2.1-6_amd64.deb ...\nUnpacking libquadmath0:amd64 - (10.2.1-6) ...\nSelecting previously unselected package libgcc-10-dev:amd64.\nPreparing - to unpack .../028-libgcc-10-dev_10.2.1-6_amd64.deb ...\nUnpacking libgcc-10-dev:amd64 - (10.2.1-6) ...\nSelecting previously unselected package gcc-10.\nPreparing - to unpack .../029-gcc-10_10.2.1-6_amd64.deb ...\nUnpacking gcc-10 (10.2.1-6) - ...\nSelecting previously unselected package gcc.\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '938' - content-range: - - bytes 40778-41715/41716 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:32 GMT - etag: - - '"0x8DB8D980806F5AD"' - last-modified: - - Wed, 26 Jul 2023 05:20:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '23' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:35 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '41716' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:32 GMT - etag: - - '"0x8DB8D980806F5AD"' - last-modified: - - Wed, 26 Jul 2023 05:20:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '23' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:37 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '44686' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:35 GMT - etag: - - '"0x8DB8D980A84DF27"' - last-modified: - - Wed, 26 Jul 2023 05:20:35 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '25' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:37 GMT - x-ms-range: - - bytes=41716-45811 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Preparing to unpack .../030-gcc_4%3a10.2.1-1_amd64.deb ...\nUnpacking - gcc (4:10.2.1-1) ...\nSelecting previously unselected package libstdc++-10-dev:amd64.\nPreparing - to unpack .../031-libstdc++-10-dev_10.2.1-6_amd64.deb ...\nUnpacking libstdc++-10-dev:amd64 - (10.2.1-6) ...\nSelecting previously unselected package g++-10.\nPreparing - to unpack .../032-g++-10_10.2.1-6_amd64.deb ...\nUnpacking g++-10 (10.2.1-6) - ...\nSelecting previously unselected package g++.\nPreparing to unpack .../033-g++_4%3a10.2.1-1_amd64.deb - ...\nUnpacking g++ (4:10.2.1-1) ...\nSelecting previously unselected package - make.\nPreparing to unpack .../034-make_4.3-4.1_amd64.deb ...\nUnpacking make - (4.3-4.1) ...\nSelecting previously unselected package libdpkg-perl.\nPreparing - to unpack .../035-libdpkg-perl_1.20.12_all.deb ...\nUnpacking libdpkg-perl - (1.20.12) ...\nSelecting previously unselected package patch.\nPreparing to - unpack .../036-patch_2.7.6-7_amd64.deb ...\nUnpacking patch (2.7.6-7) ...\nSelecting - previously unselected package dpkg-dev.\nPreparing to unpack .../037-dpkg-dev_1.20.12_all.deb - ...\nUnpacking dpkg-dev (1.20.12) ...\nSelecting previously unselected package - build-essential.\nPreparing to unpack .../038-build-essential_12.9_amd64.deb - ...\nUnpacking build-essential (12.9) ...\nSelecting previously unselected - package libelf1:amd64.\r\nPreparing to unpack .../039-libelf1_0.183-1_amd64.deb - ...\nUnpacking libelf1:amd64 (0.183-1) ...\nSelecting previously unselected - package libdw1:amd64.\nPreparing to unpack .../040-libdw1_0.183-1_amd64.deb - ...\nUnpacking libdw1:amd64 (0.183-1) ...\nSelecting previously unselected - package libbabeltrace1:amd64.\nPreparing to unpack .../041-libbabeltrace1_1.5.8-1+b3_amd64.deb - ...\nUnpacking libbabeltrace1:amd64 (1.5.8-1+b3) ...\nSelecting previously - unselected package libdebuginfod1:amd64.\nPreparing to unpack .../042-libdebuginfod1_0.183-1_amd64.deb - ...\nUnpacking libdebuginfod1:amd64 (0.183-1) ...\nSelecting previously unselected - package libipt2.\nPreparing to unpack .../043-libipt2_2.0.3-1_amd64.deb ...\nUnpacking - libipt2 (2.0.3-1) ...\nSelecting previously unselected package libpython3.9:amd64.\nPreparing - to unpack .../044-libpython3.9_3.9.2-1_amd64.deb ...\nUnpacking libpython3.9:amd64 - (3.9.2-1) ...\nSelecting previously unselected package libsource-highlight-common.\nPreparing - to unpack .../045-libsource-highlight-common_3.1.9-3_all.deb ...\nUnpacking - libsource-highlight-common (3.1.9-3) ...\nSelecting previously unselected - package libboost-regex1.74.0:amd64.\nPreparing to unpack .../046-libboost-regex1.74.0_1.74.0-9_amd64.deb - ...\nUnpacking libboost-regex1.74.0:amd64 (1.74.0-9) ...\nSelecting previously - unselected package libsource-highlight4v5.\nPreparing to unpack .../047-libsource-highlight4v5_3.1.9-3+b1_amd64.deb - ...\nUnpacking libsource-highlight4v5 (3.1.9-3+b1) ...\nSelecting previously - unselected package gdb.\nPreparing to unpack .../048-gdb_10.1-1.7_amd64.deb - ...\nUnpacking gdb (10.1-1.7) ...\nSelecting previously unselected package - libjson-perl.\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2970' - content-range: - - bytes 41716-44685/44686 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:35 GMT - etag: - - '"0x8DB8D980A84DF27"' - last-modified: - - Wed, 26 Jul 2023 05:20:35 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '25' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:37 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '44686' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:35 GMT - etag: - - '"0x8DB8D980A84DF27"' - last-modified: - - Wed, 26 Jul 2023 05:20:35 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '25' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:40 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48500' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:38 GMT - etag: - - '"0x8DB8D980BB9B99B"' - last-modified: - - Wed, 26 Jul 2023 05:20:37 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '26' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:40 GMT - x-ms-range: - - bytes=44686-48781 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Preparing to unpack .../049-libjson-perl_4.03000-1_all.deb ...\nUnpacking - libjson-perl (4.03000-1) ...\nSelecting previously unselected package libperlio-gzip-perl.\nPreparing - to unpack .../050-libperlio-gzip-perl_0.19-1+b7_amd64.deb ...\nUnpacking libperlio-gzip-perl - (0.19-1+b7) ...\nSelecting previously unselected package lcov.\nPreparing - to unpack .../051-lcov_1.14-2_all.deb ...\nUnpacking lcov (1.14-2) ...\nSelecting - previously unselected package libbrotli-dev:amd64.\nPreparing to unpack .../052-libbrotli-dev_1.0.9-2+b2_amd64.deb - ...\nUnpacking libbrotli-dev:amd64 (1.0.9-2+b2) ...\nSelecting previously - unselected package libbz2-dev:amd64.\nPreparing to unpack .../053-libbz2-dev_1.0.8-4_amd64.deb - ...\nUnpacking libbz2-dev:amd64 (1.0.8-4) ...\nSelecting previously unselected - package libexpat1-dev:amd64.\nPreparing to unpack .../054-libexpat1-dev_2.2.10-2+deb11u5_amd64.deb - ...\nUnpacking libexpat1-dev:amd64 (2.2.10-2+deb11u5) ...\nSelecting previously - unselected package libffi-dev:amd64.\nPreparing to unpack .../055-libffi-dev_3.3-6_amd64.deb - ...\nUnpacking libffi-dev:amd64 (3.3-6) ...\nSelecting previously unselected - package libpng-dev:amd64.\nPreparing to unpack .../056-libpng-dev_1.6.37-3_amd64.deb - ...\nUnpacking libpng-dev:amd64 (1.6.37-3) ...\nSelecting previously unselected - package libfreetype-dev:amd64.\nPreparing to unpack .../057-libfreetype-dev_2.10.4+dfsg-1+deb11u1_amd64.deb - ...\nUnpacking libfreetype-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...\nSelecting - previously unselected package libfreetype6-dev:amd64.\nPreparing to unpack - .../058-libfreetype6-dev_2.10.4+dfsg-1+deb11u1_amd64.deb ...\nUnpacking libfreetype6-dev:amd64 - (2.10.4+dfsg-1+deb11u1) ...\nSelecting previously unselected package uuid-dev:amd64.\nPreparing - to unpack .../059-uuid-dev_2.36.1-8+deb11u1_amd64.deb ...\nUnpacking uuid-dev:amd64 - (2.36.1-8+deb11u1) ...\nSelecting previously unselected package pkg-config.\nPreparing - to unpack .../060-pkg-config_0.29.2-1_amd64.deb ...\nUnpacking pkg-config - (0.29.2-1) ...\nSelecting previously unselected package libfontconfig-dev:amd64.\nPreparing - to unpack .../061-libfontconfig-dev_2.13.1-4.2_amd64.deb ...\nUnpacking libfontconfig-dev:amd64 - (2.13.1-4.2) ...\nSelecting previously unselected package libfontconfig1-dev:amd64.\nPreparing - to unpack .../062-libfontconfig1-dev_2.13.1-4.2_amd64.deb ...\nUnpacking libfontconfig1-dev:amd64 - (2.13.1-4.2) ...\nSelecting previously unselected package libgdbm-dev:amd64.\nPreparing - to unpack .../063-libgdbm-dev_1.19-2_amd64.deb ...\nUnpacking libgdbm-dev:amd64 - (1.19-2) ...\nSelecting previously unselected package libio-pty-perl.\nPreparing - to unpack .../064-libio-pty-perl_1%3a1.15-2_amd64.deb ...\nUnpacking libio-pty-perl - (1:1.15-2) ...\nSelecting previously unselected package libipc-run-perl.\nPreparing - to unpack .../065-libipc-run-perl_20200505.0-1_all.deb ...\nUnpacking libipc-run-perl - (20200505.0-1) ...\nSelecting previously unselected package libltdl7:amd64.\nPreparing - to unpack .../066-libltdl7_2.4.6-15_amd64.deb ...\nUnpacking libltdl7:amd64 - (2.4.6-15) ...\nSelecting previously unselected package libltdl-dev:amd64.\nPreparing - to unpack .../067-libltdl-dev_2.4.6-15_amd64.deb ...\nUnpacking libltdl-dev:amd64 - (2.4.6-15) ...\nSelecting previously unselected package liblzma-dev:amd64.\nPreparing - to unpack .../068-liblzma-dev_5.2.5-2.1~deb11u1_amd64.deb ...\nUnpacking liblzma-dev:amd64 - (5.2.5-2.1~deb11u1) ...\nSelecting previously unselected package libncurses6:amd64.\nPreparing - to unpack .../069-libncurses6_6.2+20201114-2+deb11u1_amd64.deb ...\nUnpacking - libncurses6:amd64 (6.2+20201114-2+deb11u1) ...\nSelecting previously unselected - package libncurses-dev:amd64.\nPreparing to unpack .../070-libncurses-dev_6.2+20201114-2+deb11u1_amd64.deb - ...\nUnpacking libncurses-dev:amd64 (6.2+20201114-2+deb11u1) ...\nSelecting - previously unselected package libncurses5-dev:amd64.\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3814' - content-range: - - bytes 44686-48499/48500 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:38 GMT - etag: - - '"0x8DB8D980BB9B99B"' - last-modified: - - Wed, 26 Jul 2023 05:20:37 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '26' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:41 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '48500' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:38 GMT - etag: - - '"0x8DB8D980BB9B99B"' - last-modified: - - Wed, 26 Jul 2023 05:20:37 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '26' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:43 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '52179' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:40 GMT - etag: - - '"0x8DB8D980D022D12"' - last-modified: - - Wed, 26 Jul 2023 05:20:39 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '27' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:43 GMT - x-ms-range: - - bytes=48500-52595 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Preparing to unpack .../071-libncurses5-dev_6.2+20201114-2+deb11u1_amd64.deb - ...\nUnpacking libncurses5-dev:amd64 (6.2+20201114-2+deb11u1) ...\nSelecting - previously unselected package libodbc1:amd64.\nPreparing to unpack .../072-libodbc1_2.3.6-0.1+b1_amd64.deb - ...\nUnpacking libodbc1:amd64 (2.3.6-0.1+b1) ...\nSelecting previously unselected - package libpq5:amd64.\nPreparing to unpack .../073-libpq5_13.11-0+deb11u1_amd64.deb - ...\nUnpacking libpq5:amd64 (13.11-0+deb11u1) ...\nSelecting previously unselected - package libpq-dev.\nPreparing to unpack .../074-libpq-dev_13.11-0+deb11u1_amd64.deb - ...\nUnpacking libpq-dev (13.11-0+deb11u1) ...\nSelecting previously unselected - package libpthread-stubs0-dev:amd64.\nPreparing to unpack .../075-libpthread-stubs0-dev_0.4-1_amd64.deb - ...\nUnpacking libpthread-stubs0-dev:amd64 (0.4-1) ...\nSelecting previously - unselected package libreadline-dev:amd64.\nPreparing to unpack .../076-libreadline-dev_8.1-1_amd64.deb - ...\nUnpacking libreadline-dev:amd64 (8.1-1) ...\nSelecting previously unselected - package libsqlite3-dev:amd64.\nPreparing to unpack .../077-libsqlite3-dev_3.34.1-3_amd64.deb - ...\nUnpacking libsqlite3-dev:amd64 (3.34.1-3) ...\nSelecting previously unselected - package libtcl8.6:amd64.\nPreparing to unpack .../078-libtcl8.6_8.6.11+dfsg-1_amd64.deb - ...\nUnpacking libtcl8.6:amd64 (8.6.11+dfsg-1) ...\nSelecting previously unselected - package libtime-duration-perl.\nPreparing to unpack .../079-libtime-duration-perl_1.21-1_all.deb - ...\nUnpacking libtime-duration-perl (1.21-1) ...\nSelecting previously unselected - package libtimedate-perl.\nPreparing to unpack .../080-libtimedate-perl_2.3300-2_all.deb - ...\nUnpacking libtimedate-perl (2.3300-2) ...\nSelecting previously unselected - package libxft2:amd64.\nPreparing to unpack .../081-libxft2_2.3.2-2_amd64.deb - ...\nUnpacking libxft2:amd64 (2.3.2-2) ...\nSelecting previously unselected - package x11-common.\nPreparing to unpack .../082-x11-common_1%3a7.7+22_all.deb - ...\nUnpacking x11-common (1:7.7+22) ...\nSelecting previously unselected - package libxss1:amd64.\nPreparing to unpack .../083-libxss1_1%3a1.2.3-1_amd64.deb - ...\nUnpacking libxss1:amd64 (1:1.2.3-1) ...\nSelecting previously unselected - package libtk8.6:amd64.\nPreparing to unpack .../084-libtk8.6_8.6.11-2_amd64.deb - ...\nUnpacking libtk8.6:amd64 (8.6.11-2) ...\nSelecting previously unselected - package xorg-sgml-doctools.\nPreparing to unpack .../085-xorg-sgml-doctools_1%3a1.11-1.1_all.deb - ...\nUnpacking xorg-sgml-doctools (1:1.11-1.1) ...\nSelecting previously unselected - package x11proto-dev.\nPreparing to unpack .../086-x11proto-dev_2020.1-1_all.deb - ...\nUnpacking x11proto-dev (2020.1-1) ...\nSelecting previously unselected - package libxau-dev:amd64.\nPreparing to unpack .../087-libxau-dev_1%3a1.0.9-1_amd64.deb - ...\nUnpacking libxau-dev:amd64 (1:1.0.9-1) ...\nSelecting previously unselected - package x11proto-core-dev.\nPreparing to unpack .../088-x11proto-core-dev_2020.1-1_all.deb - ...\nUnpacking x11proto-core-dev (2020.1-1) ...\nSelecting previously unselected - package libxdmcp-dev:amd64.\nPreparing to unpack .../089-libxdmcp-dev_1%3a1.1.2-3_amd64.deb - ...\nUnpacking libxdmcp-dev:amd64 (1:1.1.2-3) ...\nSelecting previously unselected - package xtrans-dev.\nPreparing to unpack .../090-xtrans-dev_1.4.0-1_all.deb - ...\nUnpacking xtrans-dev (1.4.0-1) ...\nSelecting previously unselected package - libxcb1-dev:amd64.\nPreparing to unpack .../091-libxcb1-dev_1.14-3_amd64.deb - ...\nUnpacking libxcb1-dev:amd64 (1.14-3) ...\nSelecting previously unselected - package libx11-dev:amd64.\nPreparing to unpack .../092-libx11-dev_2%3a1.7.2-1+deb11u1_amd64.deb - ...\nUnpacking libx11-dev:amd64 (2:1.7.2-1+deb11u1) ...\nSelecting previously - unselected package x11proto-xext-dev.\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3679' - content-range: - - bytes 48500-52178/52179 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:40 GMT - etag: - - '"0x8DB8D980D022D12"' - last-modified: - - Wed, 26 Jul 2023 05:20:39 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '27' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:43 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '55329' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:41 GMT - etag: - - '"0x8DB8D980E349947"' - last-modified: - - Wed, 26 Jul 2023 05:20:41 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '28' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:43 GMT - x-ms-range: - - bytes=52179-56274 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Preparing to unpack .../093-x11proto-xext-dev_2020.1-1_all.deb ...\nUnpacking - x11proto-xext-dev (2020.1-1) ...\nSelecting previously unselected package - libxext-dev:amd64.\nPreparing to unpack .../094-libxext-dev_2%3a1.3.3-1.1_amd64.deb - ...\nUnpacking libxext-dev:amd64 (2:1.3.3-1.1) ...\nSelecting previously unselected - package libxrender-dev:amd64.\nPreparing to unpack .../095-libxrender-dev_1%3a0.9.10-1_amd64.deb - ...\nUnpacking libxrender-dev:amd64 (1:0.9.10-1) ...\nSelecting previously - unselected package libxft-dev:amd64.\nPreparing to unpack .../096-libxft-dev_2.3.2-2_amd64.deb - ...\nUnpacking libxft-dev:amd64 (2.3.2-2) ...\nSelecting previously unselected - package x11proto-scrnsaver-dev.\nPreparing to unpack .../097-x11proto-scrnsaver-dev_2020.1-1_all.deb - ...\nUnpacking x11proto-scrnsaver-dev (2020.1-1) ...\nSelecting previously - unselected package libxss-dev:amd64.\nPreparing to unpack .../098-libxss-dev_1%3a1.2.3-1_amd64.deb - ...\nUnpacking libxss-dev:amd64 (1:1.2.3-1) ...\nSelecting previously unselected - package lzma.\nPreparing to unpack .../099-lzma_9.22-2.2_amd64.deb ...\nUnpacking - lzma (9.22-2.2) ...\nSelecting previously unselected package lzma-dev.\nPreparing - to unpack .../100-lzma-dev_9.22-2.2_all.deb ...\nUnpacking lzma-dev (9.22-2.2) - ...\nSelecting previously unselected package moreutils.\nPreparing to unpack - .../101-moreutils_0.65-1_amd64.deb ...\nUnpacking moreutils (0.65-1) ...\nSelecting - previously unselected package odbcinst1debian2:amd64.\nPreparing to unpack - .../102-odbcinst1debian2_2.3.6-0.1+b1_amd64.deb ...\nUnpacking odbcinst1debian2:amd64 - (2.3.6-0.1+b1) ...\nSelecting previously unselected package odbcinst.\nPreparing - to unpack .../103-odbcinst_2.3.6-0.1+b1_amd64.deb ...\nUnpacking odbcinst - (2.3.6-0.1+b1) ...\nSelecting previously unselected package python-pip-whl.\nPreparing - to unpack .../104-python-pip-whl_20.3.4-4+deb11u1_all.deb ...\nUnpacking python-pip-whl - (20.3.4-4+deb11u1) ...\nSelecting previously unselected package python3-lib2to3.\nPreparing - to unpack .../105-python3-lib2to3_3.9.2-1_all.deb ...\nUnpacking python3-lib2to3 - (3.9.2-1) ...\nSelecting previously unselected package python3-distutils.\nPreparing - to unpack .../106-python3-distutils_3.9.2-1_all.deb ...\nUnpacking python3-distutils - (3.9.2-1) ...\nSelecting previously unselected package python3-pkg-resources.\nPreparing - to unpack .../107-python3-pkg-resources_52.0.0-4_all.deb ...\nUnpacking python3-pkg-resources - (52.0.0-4) ...\nSelecting previously unselected package python3-setuptools.\nPreparing - to unpack .../108-python3-setuptools_52.0.0-4_all.deb ...\nUnpacking python3-setuptools - (52.0.0-4) ...\nSelecting previously unselected package python3-wheel.\nPreparing - to unpack .../109-python3-wheel_0.34.2-1_all.deb ...\nUnpacking python3-wheel - (0.34.2-1) ...\nSelecting previously unselected package python3-pip.\nPreparing - to unpack .../110-python3-pip_20.3.4-4+deb11u1_all.deb ...\nUnpacking python3-pip - (20.3.4-4+deb11u1) ...\nSelecting previously unselected package swig4.0.\nPreparing - to unpack .../111-swig4.0_4.0.2-1_amd64.deb ...\nUnpacking swig4.0 (4.0.2-1) - ...\nSelecting previously unselected package swig.\nPreparing to unpack .../112-swig_4.0.2-1_all.deb - ...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '3150' - content-range: - - bytes 52179-55328/55329 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:41 GMT - etag: - - '"0x8DB8D980E349947"' - last-modified: - - Wed, 26 Jul 2023 05:20:41 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '28' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:43 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '55329' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:41 GMT - etag: - - '"0x8DB8D980E349947"' - last-modified: - - Wed, 26 Jul 2023 05:20:41 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '28' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:45 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '59619' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:43 GMT - etag: - - '"0x8DB8D980F670578"' - last-modified: - - Wed, 26 Jul 2023 05:20:43 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '29' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:45 GMT - x-ms-range: - - bytes=55329-59424 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: 'Unpacking swig (4.0.2-1) ... - - Selecting previously unselected package tcl8.6. - - Preparing to unpack .../113-tcl8.6_8.6.11+dfsg-1_amd64.deb ... - - Unpacking tcl8.6 (8.6.11+dfsg-1) ... - - Selecting previously unselected package tcl. - - Preparing to unpack .../114-tcl_8.6.11+1_amd64.deb ... - - Unpacking tcl (8.6.11+1) ... - - Selecting previously unselected package tcl8.6-dev:amd64. - - Preparing to unpack .../115-tcl8.6-dev_8.6.11+dfsg-1_amd64.deb ... - - Unpacking tcl8.6-dev:amd64 (8.6.11+dfsg-1) ... - - Selecting previously unselected package tcl-dev:amd64. - - Preparing to unpack .../116-tcl-dev_8.6.11+1_amd64.deb ... - - Unpacking tcl-dev:amd64 (8.6.11+1) ... - - Selecting previously unselected package tk8.6. - - Preparing to unpack .../117-tk8.6_8.6.11-2_amd64.deb ... - - Unpacking tk8.6 (8.6.11-2) ... - - Selecting previously unselected package tk. - - Preparing to unpack .../118-tk_8.6.11+1_amd64.deb ... - - Unpacking tk (8.6.11+1) ... - - Selecting previously unselected package tk8.6-dev:amd64. - - Preparing to unpack .../119-tk8.6-dev_8.6.11-2_amd64.deb ... - - Unpacking tk8.6-dev:amd64 (8.6.11-2) ... - - Selecting previously unselected package tk-dev:amd64. - - Preparing to unpack .../120-tk-dev_8.6.11+1_amd64.deb ... - - Unpacking tk-dev:amd64 (8.6.11+1) ... - - Selecting previously unselected package unixodbc-dev:amd64. - - Preparing to unpack .../121-unixodbc-dev_2.3.6-0.1+b1_amd64.deb ... - - Unpacking unixodbc-dev:amd64 (2.3.6-0.1+b1) ... - - Selecting previously unselected package unzip. - - Preparing to unpack .../122-unzip_6.0-26+deb11u1_amd64.deb ... - - Unpacking unzip (6.0-26+deb11u1) ... - - Setting up media-types (4.0.0) ... - - Setting up libxft2:amd64 (2.3.2-2) ... - - Setting up libio-pty-perl (1:1.15-2) ... - - Setting up unzip (6.0-26+deb11u1) ... - - Setting up libpng-dev:amd64 (1.6.37-3) ... - - Setting up binutils-common:amd64 (2.35.2-2) ... - - Setting up x11-common (1:7.7+22) ... - - debconf: unable to initialize frontend: Dialog - - debconf: (TERM is not set, so the dialog frontend is not usable.) - - debconf: falling back to frontend: Readline - - invoke-rc.d: could not determine current runlevel - - invoke-rc.d: policy-rc.d denied execution of start. - - Setting up libpq5:amd64 (13.11-0+deb11u1) ... - - Setting up libctf-nobfd0:amd64 (2.35.2-2) ... - - Setting up libpq-dev (13.11-0+deb11u1) ... - - Setting up libgomp1:amd64 (10.2.1-6) ... - - Setting up bzip2 (1.0.8-4) ... - - Setting up libffi-dev:amd64 (3.3-6) ... - - Setting up libpthread-stubs0-dev:amd64 (0.4-1) ... - - Setting up libsource-highlight-common (3.1.9-3) ... - - Setting up libasan6:amd64 (10.2.1-6) ... - - Setting up xtrans-dev (1.4.0-1) ... - - Setting up autotools-dev (20180224.1+nmu1) ... - - Setting up libexpat1-dev:amd64 (2.2.10-2+deb11u5) ... - - Setting up libsqlite3-dev:amd64 (3.34.1-3) ... - - Setting up make (4.3-4.1) ... - - Setting up libmpfr6:amd64 (4.1.0-3) ... - - Setting up uuid-dev:amd64 (2.36.1-8+deb11u1) ... - - Setting up libncurses6:amd64 (6.2+20201114-2+deb11u1) ... - - Setting up libsigsegv2:amd64 (2.13-1) ... - - Setting up xz-utils (5.2.5-2.1~deb11u1) ... - - update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in - auto mode - - Setting up libboost-regex1.74.0:amd64 (1.74.0-9) ... - - Setting up libquadmath0:amd64 (10.2.1-6) ... - - Setting up libmpc3:amd64 (1.2.0-1) ... - - Setting up libatomic1:amd64 (10.2.1-6) ... - - Setting up patch (2.7.6-7) ... - - Setting up libtcl8.6:amd64 (8.6.11+dfsg-1) ... - - Setting up libipt2 (2.0.3-1) ... - - Setting up lzma (9.22-2.2) ... - - update-alternatives: using /usr/bin/lzmp to provide /usr/bin/lzma (lzma) in - auto mode - - Setting up libipc-run-perl (20200505.0-1) ... - - Setting up libltdl7:amd64 (2.4.6-15) ... - - Setting up libdpkg-perl (1.20.12) ... - - Setting up lzma-dev (9.22-2.2) ... - - Setting up libtime-duration-perl (1.21-1) ... - - Setting up libtimedate-perl (2.3300-2) ... - - Setting up liblzma-dev:amd64 (5.2.5-2.1~deb11u1) ... - - Setting up libubsan1:amd64 (10.2.1-6) ... - - Setting up libjson-perl (4.03000-1) ... - - Setting up libmpdec3:amd64 (2.5.1-1) ... - - Setting up xorg-sgml-doctools (1:1.11-1.1) ... - - Setting up python-pip-whl (20.3.4-4+deb11u1) ... - - Setting up libxss1:amd64 (1:1.2.3-1) ... - - Setting up libgdbm-dev:amd64 (1.19-2) ... - - Setting up libbinutils:amd64 (2.35.2-2) ... - - Setting up swig4.0 (4.0.2-1) ... - - Setting up libisl23:a' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 55329-59424/59619 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:43 GMT - etag: - - '"0x8DB8D980F670578"' - last-modified: - - Wed, 26 Jul 2023 05:20:43 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '29' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:45 GMT - x-ms-range: - - bytes=59425-63520 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "md64 (0.23-1) ...\nSetting up libperlio-gzip-perl (0.19-1+b7) ...\nSetting - up libelf1:amd64 (0.183-1) ...\nSetting up libcc1-0:amd64 (10.2.1-6) ...\nSetting - up libbrotli-dev:amd64 (1.0.9-2+b2) ...\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '194' - content-range: - - bytes 59425-59618/59619 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:43 GMT - etag: - - '"0x8DB8D980F670578"' - last-modified: - - Wed, 26 Jul 2023 05:20:43 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '29' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:46 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '59619' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:43 GMT - etag: - - '"0x8DB8D980F670578"' - last-modified: - - Wed, 26 Jul 2023 05:20:43 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '29' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:48 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '61303' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:46 GMT - etag: - - '"0x8DB8D98109C7B76"' - last-modified: - - Wed, 26 Jul 2023 05:20:45 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '30' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:48 GMT - x-ms-range: - - bytes=59619-63714 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Setting up liblsan0:amd64 (10.2.1-6) ...\nSetting up cpp-10 (10.2.1-6) - ...\nSetting up libitm1:amd64 (10.2.1-6) ...\nSetting up libsource-highlight4v5 - (3.1.9-3+b1) ...\nSetting up libpython3.9-stdlib:amd64 (3.9.2-1) ...\nSetting - up libpython3-stdlib:amd64 (3.9.2-3) ...\nSetting up libbz2-dev:amd64 (1.0.8-4) - ...\nSetting up libtsan0:amd64 (10.2.1-6) ...\nSetting up libctf0:amd64 (2.35.2-2) - ...\nSetting up x11proto-dev (2020.1-1) ...\nSetting up libdw1:amd64 (0.183-1) - ...\nSetting up tcl8.6 (8.6.11+dfsg-1) ...\nSetting up libncurses-dev:amd64 - (6.2+20201114-2+deb11u1) ...\nSetting up swig (4.0.2-1) ...\nSetting up moreutils - (0.65-1) ...\nSetting up libxau-dev:amd64 (1:1.0.9-1) ...\nSetting up libgcc-10-dev:amd64 - (10.2.1-6) ...\nSetting up libtk8.6:amd64 (8.6.11-2) ...\nSetting up libdebuginfod1:amd64 - (0.183-1) ...\nSetting up m4 (1.4.18-5) ...\nSetting up libreadline-dev:amd64 - (8.1-1) ...\nSetting up libfreetype-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...\nSetting - up libxdmcp-dev:amd64 (1:1.1.2-3) ...\nSetting up libpython3.9:amd64 (3.9.2-1) - ...\nSetting up x11proto-core-dev (2020.1-1) ...\nSetting up pkg-config (0.29.2-1) - ...\nSetting up libodbc1:amd64 (2.3.6-0.1+b1) ...\nSetting up libbabeltrace1:amd64 - (1.5.8-1+b3) ...\nSetting up autoconf (2.69-14) ...\nSetting up x11proto-xext-dev - (2020.1-1) ...\nSetting up cpp (4:10.2.1-1) ...\nSetting up tcl (8.6.11+1) - ...\nSetting up libncurses5-dev:amd64 (6.2+20201114-2+deb11u1) ...\nSetting - up x11proto-scrnsaver-dev (2020.1-1) ...\nSetting up python3.9 (3.9.2-1) ...\nSetting - up binutils-x86-64-linux-gnu (2.35.2-2) ...\nSetting up automake (1:1.16.3-2) - ...\nupdate-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake - (automake) in auto mode\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1684' - content-range: - - bytes 59619-61302/61303 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:46 GMT - etag: - - '"0x8DB8D98109C7B76"' - last-modified: - - Wed, 26 Jul 2023 05:20:45 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '30' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:48 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '61303' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:46 GMT - etag: - - '"0x8DB8D98109C7B76"' - last-modified: - - Wed, 26 Jul 2023 05:20:45 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '30' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:51 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '63956' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:49 GMT - etag: - - '"0x8DB8D9812626B4E"' - last-modified: - - Wed, 26 Jul 2023 05:20:48 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '31' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:51 GMT - x-ms-range: - - bytes=61303-65398 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Setting up tk8.6 (8.6.11-2) ...\nSetting up libstdc++-10-dev:amd64 - (10.2.1-6) ...\nSetting up libxcb1-dev:amd64 (1.14-3) ...\nSetting up libx11-dev:amd64 - (2:1.7.2-1+deb11u1) ...\nSetting up python3 (3.9.2-3) ...\nrunning python - rtupdate hooks for python3.9...\nrunning python post-rtupdate hooks for python3.9...\nSetting - up binutils (2.35.2-2) ...\nSetting up python3-wheel (0.34.2-1) ...\nSetting - up dpkg-dev (1.20.12) ...\nSetting up libfreetype6-dev:amd64 (2.10.4+dfsg-1+deb11u1) - ...\nSetting up libltdl-dev:amd64 (2.4.6-15) ...\nSetting up gdb (10.1-1.7) - ...\nSetting up gcc-10 (10.2.1-6) ...\nSetting up libxext-dev:amd64 (2:1.3.3-1.1) - ...\nSetting up tk (8.6.11+1) ...\nSetting up python3-lib2to3 (3.9.2-1) ...\nSetting - up libxrender-dev:amd64 (1:0.9.10-1) ...\nSetting up python3-pkg-resources - (52.0.0-4) ...\nSetting up python3-distutils (3.9.2-1) ...\nSetting up g++-10 - (10.2.1-6) ...\nSetting up python3-setuptools (52.0.0-4) ...\nSetting up libfontconfig-dev:amd64 - (2.13.1-4.2) ...\nSetting up tcl8.6-dev:amd64 (8.6.11+dfsg-1) ...\nSetting - up libxss-dev:amd64 (1:1.2.3-1) ...\nSetting up gcc (4:10.2.1-1) ...\nSetting - up python3-pip (20.3.4-4+deb11u1) ...\nSetting up tcl-dev:amd64 (8.6.11+1) - ...\nSetting up g++ (4:10.2.1-1) ...\nupdate-alternatives: using /usr/bin/g++ - to provide /usr/bin/c++ (c++) in auto mode\nSetting up build-essential (12.9) - ...\nSetting up libxft-dev:amd64 (2.3.2-2) ...\nSetting up libfontconfig1-dev:amd64 - (2.13.1-4.2) ...\nSetting up lcov (1.14-2) ...\nSetting up tk8.6-dev:amd64 - (8.6.11-2) ...\nSetting up tk-dev:amd64 (8.6.11+1) ...\nSetting up odbcinst1debian2:amd64 - (2.3.6-0.1+b1) ...\nSetting up unixodbc-dev:amd64 (2.3.6-0.1+b1) ...\nSetting - up odbcinst (2.3.6-0.1+b1) ...\nProcessing triggers for libc-bin (2.31-13+deb11u6) - ...\n\e[91m+ rm -rf /var/lib/apt/lists/auxfiles /var/lib/apt/lists/deb.debian.org_debian-security_dists_bullseye-security_InRelease - /var/lib/apt/lists/deb.debian.org_debian-security_dists_bullseye-security_main_binary-amd64_Packages.lz4 - /var/lib/apt/lists/deb.debian.\e[0m\e[91morg_debian_dists_bullseye-updates_InRelease - /var/lib/apt/lists/deb.debian.org_debian_dists_bullseye-updates_main_binary-amd64_Packages.lz4 - /var/lib/apt/lists/deb.debian.org_debian_dists_bullseye_InRelease /var/lib/apt/lists/deb.debian.org_debian_dists_bull\e[0m\e[91mseye_main_binary-amd64_Packages.lz4 - /var/lib/apt/lists/lock /var/lib/apt/lists/partial\n\e[0m\e[91m+ tmpDir=/opt/tmp\n+ - imagesDir=/opt/tmp/images\n+ buildDir=/opt/tmp/build\n+ mkdir -p /usr/local/share/pip-cache/lib\n\e[0m\e[91m+ - chmod -R 777 /usr/local/share/pip-cache\n\e[0m\e[91m+ pip3 install pip --upgrade\n\e[0mRequirement - already satisfied: pip in /usr/lib/python3/dist-packages (20.3.4)\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2653' - content-range: - - bytes 61303-63955/63956 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:49 GMT - etag: - - '"0x8DB8D9812626B4E"' - last-modified: - - Wed, 26 Jul 2023 05:20:48 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '31' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:51 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '63956' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:49 GMT - etag: - - '"0x8DB8D9812626B4E"' - last-modified: - - Wed, 26 Jul 2023 05:20:48 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '31' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:54 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '69084' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:52 GMT - etag: - - '"0x8DB8D9814ECF0CE"' - last-modified: - - Wed, 26 Jul 2023 05:20:52 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '33' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:54 GMT - x-ms-range: - - bytes=63956-68051 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Collecting pip\n Downloading pip-23.2.1-py3-none-any.whl (2.1 MB)\nInstalling - collected packages: pip\n Attempting uninstall: pip\n Found existing installation: - pip 20.3.4\n Not uninstalling pip at /usr/lib/python3/dist-packages, outside - environment /usr\n Can't uninstall 'pip'. No files were found to uninstall.\nSuccessfully - installed pip-23.2.1\n\e[91m+ python3 -m pip install --upgrade cython\n\e[0mCollecting - cython\r\n Obtaining dependency information for cython from https://files.pythonhosted.org/packages/15/37/314c82797f3798d738f5bde4b85c01f54b2b81acf516fb3fcbc6896c5f8f/Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata\n - \ Downloading Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata - (3.1 kB)\nDownloading Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - (3.6 MB)\n \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 - 3.6/3.6 MB 62.8 MB/s eta 0:00:00\nInstalling collected packages: cython\nSuccessfully - installed cython-3.0.0\n\e[91mWARNING: Running pip as the 'root' user can - result in broken permissions and conflicting behaviour with the system package - manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv\n\e[0m\e[91m+ - pip3 install --upgrade cython\n\e[0mRequirement already satisfied: cython - in /usr/local/lib/python3.9/dist-packages (3.0.0)\n\e[91mWARNING: Running - pip as the 'root' user can result in broken permissions and conflicting behaviour - with the system package manager. It is recommended to use a virtual environment - instead: https://pip.pypa.io/warnings/venv\n\e[0m\e[91m+ . /opt/tmp/build/__pythonVersions.sh\n++ - PYTHON_RUNTIME_BASE_TAG=20230316.1\n++ PIP_VERSION=21.2.4\n++ PYTHON27_VERSION=2.7.18\n++ - PYTHON36_VERSION=3.6.15\n++ PYTHON37_VERSION=3.7.15\n++ PYTHON38_VERSION=3.8.16\n\e[0m\e[91m++ - PYTHON39_VERSION=3.9.15\n\e[0m\e[91m++ PYTHON310_VERSION=3.10.8\n\e[0m\e[91m++ - PYTHON311_VERSION=3.11.0\n\e[0m\e[91m+ /opt/tmp/images/installPlatform.sh - python 3.8.16\n\e[0m\e[91m+++ dirname /opt/tmp/images/installPlatform.sh\n\e[0m\e[91m++ - cd /opt/tmp/images\n++ pwd\n\e[0m\e[91m+ CURRENT_DIR=/opt/tmp/images\n\e[0m\e[91m+ - source /opt/tmp/images/__common.sh\n\e[0m\e[91m++++ dirname /opt/tmp/images/__common.sh\n\e[0m\e[91m+++ - cd /opt/tmp/images\n\e[0m\e[91m+++ pwd\n\e[0m\e[91m++ __CURRENT_DIR=/opt/tmp/images\n\e[0m\e[91m++ - source /opt/tmp/images/__sdkStorageConstants.sh\n\e[0m\e[91m+++ ENABLE_DYNAMIC_INSTALL_KEY=ENABLE_DYNAMIC_INSTALL\n\e[0mDownloading - python version '3.8.16' from 'https://oryx-cdn.microsoft.io'...\n\e[91m+++ - SDK_STORAGE_BASE_URL_KEY_NAME=ORYX_SDK_STORAGE_BASE_URL\n\e[0m\e[91m+++ TESTING_SDK_STORAGE_URL_KEY_NAME=ORYX_TEST_SDK_STORAGE_URL\n\e[0m\e[91m+++ - PRIVATE_STAGING_STORAGE_SAS_TOKEN_KEY=ORYX_SDK_STORAGE_ACCOUNT_ACCESS_TOKEN\n\e[0m\e[91m+++ - ORYX_KEYVAULT_URI=https://oryx.vault.azure.net\n\e[0m\e[91m+++ STAGING_STORAGE_SAS_TOKEN_KEYVAULT_SECRET_NAME=ORYX-SDK-STAGING-PRIVATE-SAS-TOKEN\n\e[0mretry - 0\n\e[91m+++ PRIVATE_STAGING_SDK_STORAGE_BASE_URL=https://oryxsdksstaging.blob.core.windows.net\n\e[0m\e[91m+++ - DEV_SDK_STORAGE_BASE_URL=https://oryxsdksdev.blob.core.windows.net\n\e[0m\e[91m+++ - SANDBOX_SDK_STORAGE_BASE_URL=https://oryxsdkssandbox.blob.core.windows.net\n\e[0m\e[91m+++ - PRIVATE_SDK_STORAGE_BASE_URL=https://oryxsdksprivate.blob.core.windows.net\n\e[0m\e[91m+++ - PROD_SDK_STORAGE_BASE_URL=https://oryxsdksprod.blob.core.windows.net\n\e[0m\e[91m+++ - PROD_BACKUP_SDK_STORAGE_BASE_URL=https://oryxsdksprodbackup.blob.core.windows.net\n\e[0m\e[91m+++ - PROD_SDK_CDN_STORAGE_BASE_URL=https://oryx-cdn.microsoft.io\n+++ DEFAULT_VERSION_FILE_NAME=defaultVersion.txt\n+++ - DEFAULT_VERSION_FILE_PREFIX=defaultVersion\n\e[0m\e[91m+++ DEFAULT_VERSION_FILE_TYPE=txt\n+++ - VERSIONS_TO_BUILD_FILE_NAME=versionsToBuild.txt\n+++ CONTAINER_METADATA_URL_FORMAT='{0}/{1}?restype=container&comp=list&include=metadata&marker={2}&{3}'\n+++ - SDK_DOWNLOAD_SENTINEL_FILE_NAME=.oryx-sdkdownload-sentinel\n+++ SDK_VERSION_METADATA_NAME=Sdk_version\n\e[0m\e[91m+++ - LEGACY_SDK_VERSION_METADATA_NAME=Version\n+++ DOTNET_RUNTIME_VERSION_METADATA_NAME=Dotnet_runtime_version\n+++ - LEG" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4016' - content-range: - - bytes 63956-68051/69084 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:52 GMT - etag: - - '"0x8DB8D9814ECF0CE"' - last-modified: - - Wed, 26 Jul 2023 05:20:52 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '33' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:54 GMT - x-ms-range: - - bytes=68052-72147 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "ACY_DOTNET_RUNTIME_VERSION_METADATA_NAME=Runtime_version\n+++ OS_TYPE_METADATA_NAME=Os_type\n+ - PARAMS=\n+ (( 2 ))\n+ case \"$1\" in\n+ PARAMS=' python'\n+ shift\n+ (( - \ 1 ))\n+ case \"$1\" in\n+ PARAMS=' python 3.8.16'\n+ shift\n+ (( 0 ))\n+ - eval set -- ' python 3.8.16'\n++ set -- python 3.8.16\n+ PLATFORM_NAME=python\n+ - VERSION=3.8.16\n+ debianFlavor=bullseye\n+ fileName=python-3.8.16.tar.gz\n+ - sdkStorageAccountUrl=https://oryx-cdn.microsoft.io\n+ sasToken=\n+ '[' -z - https://oryx-cdn.microsoft.io ']'\n+ '[' https://oryx-cdn.microsoft.io == - https://oryxsdksstaging.blob.core.windows.net ']'\n+ '[' -z bullseye ']'\n+ - '[' bullseye == stretch ']'\n+ fileName=python-bullseye-3.8.16.tar.gz\n+ platformDir=/opt/python\n+ - '[' -z '' ']'\n+ targetDir=/opt/python/3.8.16\n+ START_TIME=0\n+ set +x\n\e[0m\e[91m - \ % Total % Received % Xferd Average Speed Time Time Time Current\n\e[0m\e[91m - \ Dload Upload Total Spent Left Speed\n\n\e[0m\e[91m - \ 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1032' - content-range: - - bytes 68052-69083/69084 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:52 GMT - etag: - - '"0x8DB8D9814ECF0CE"' - last-modified: - - Wed, 26 Jul 2023 05:20:52 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '33' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:55 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '69084' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:52 GMT - etag: - - '"0x8DB8D9814ECF0CE"' - last-modified: - - Wed, 26 Jul 2023 05:20:52 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '33' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:57 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '69349' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:55 GMT - etag: - - '"0x8DB8D9816B6ACF1"' - last-modified: - - Wed, 26 Jul 2023 05:20:55 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '34' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:57 GMT - x-ms-range: - - bytes=69084-73179 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "\e[0m\e[91m 2 71.9M 2 2064k 0 0 7561k 0 0:00:09 --:--:-- - \ 0:00:09 7533k\n\e[0m\e[91m 33 71.9M 33 24.3M 0 0 18.9M 0 - \ 0:00:03 0:00:01 0:00:02 18.9M\n\e[0m\e[91m 66 71.9M 66 48.0M 0 0 - \ 21.1M 0 0:00:03 0:00:02 0:00:01 21.1M\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '265' - content-range: - - bytes 69084-69348/69349 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:55 GMT - etag: - - '"0x8DB8D9816B6ACF1"' - last-modified: - - Wed, 26 Jul 2023 05:20:55 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '34' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:20:57 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '69349' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:55 GMT - etag: - - '"0x8DB8D9816B6ACF1"' - last-modified: - - Wed, 26 Jul 2023 05:20:55 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '34' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:00 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '69953' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:58 GMT - etag: - - '"0x8DB8D98187AF0FE"' - last-modified: - - Wed, 26 Jul 2023 05:20:58 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '35' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:00 GMT - x-ms-range: - - bytes=69349-73444 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "\e[0m\e[91m 90 71.9M 90 65.1M 0 0 19.8M 0 0:00:03 0:00:03 - --:--:-- 19.8M\n100 71.9M 100 71.9M 0 0 18.8M 0 0:00:03 0:00:03 - --:--:-- 18.8M\n\e[0mVerifying checksum...\npython-bullseye-3.8.16.tar.gz: - OK\n\e[91m+ set -x\n\e[0mDownloaded and verified checksum in 4 sec(s).\nExtracting...\n\e[91m+ - ELAPSED_TIME=4\n\e[0m\e[91m+ echo 'Downloaded and verified checksum in 4 sec(s).'\n\e[0m\e[91m+ - echo Extracting...\n\e[0m\e[91m+ START_TIME=4\n\e[0m\e[91m+ mkdir -p /opt/python/3.8.16\n\e[0m\e[91m+ - tar -xzf python-bullseye-3.8.16.tar.gz -C /opt/python/3.8.16\n\e[0m\e[91m+ - rm -f python-bullseye-3.8.16.tar.gz\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '604' - content-range: - - bytes 69349-69952/69953 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:58 GMT - etag: - - '"0x8DB8D98187AF0FE"' - last-modified: - - Wed, 26 Jul 2023 05:20:58 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '35' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:01 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '69953' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:58 GMT - etag: - - '"0x8DB8D98187AF0FE"' - last-modified: - - Wed, 26 Jul 2023 05:20:58 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '35' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:03 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '71565' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:01 GMT - etag: - - '"0x8DB8D9819BA6DD9"' - last-modified: - - Wed, 26 Jul 2023 05:21:00 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '36' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:03 GMT - x-ms-range: - - bytes=69953-74048 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "\e[0m\e[91m+ ELAPSED_TIME=2\n\e[0mExtracted contents in 2 sec(s).\n\e[91m+ - echo 'Extracted contents in 2 sec(s).'\n\e[0m\e[91m+ '[' python == python - ']'\n\e[0m\e[91m+ '[' -d /opt/python/3.8.16 ']'\n\e[0m\e[91m+ echo /opt/python/3.8.16/lib\n\e[0m\e[91m+ - ldconfig\n\e[0m\e[91m+ '[' '' '!=' false ']'\n\e[0m\nCreated link from 3.8 - to 3.8.16\n\e[91m+ cd /opt/python\n+ IFS=.\n+ read -ra VERSION_PARTS\n+ MAJOR_MINOR=3.8\n+ - echo\n+ echo 'Created link from 3.8 to 3.8.16'\n+ ln -sfn 3.8.16 3.8\n\e[0m\e[91m+ - '[' -d /opt/python/3.8.16 ']'\n+ echo /opt/python/3.8.16/lib\n\e[0m\e[91m+ - ldconfig\n\e[0m\e[91m+ cd /opt/python\n\e[0m\e[91m+ ln -s 3.8.16 3.8\n\e[0m\e[91m+ - ln -s 3.8.16 latest\n\e[0m\e[91m+ ln -s 3.8.16 stable\n\e[0m\e[91m+ PLATFORM_SETUP_START=50\n\e[0m\nDownloading - and extracting 'nodejs' version '16.20.1' to '/opt/nodejs/16.20.1'...\n\e[91m+ - echo\n\e[0m\e[91m+ echo 'Downloading and extracting '\\''nodejs'\\'' version - '\\''16.20.1'\\'' to '\\''/opt/nodejs/16.20.1'\\''...'\n\e[0m\e[91m+ rm -rf - /opt/nodejs/16.20.1\n\e[0m\e[91m+ mkdir -p /opt/nodejs/16.20.1\n\e[0m\e[91m+ - cd /opt/nodejs/16.20.1\n\e[0mDetected image debian flavor: bullseye.\n\e[91m+ - PLATFORM_BINARY_DOWNLOAD_START=50\n\e[0m\e[91m+ platformName=nodejs\n\e[0m\e[91m+ - export DEBIAN_FLAVOR=bullseye\n\e[0m\e[91m+ DEBIAN_FLAVOR=bullseye\n\e[0m\e[91m+ - echo 'Detected image debian flavor: bullseye.'\n\e[0m\e[91m+ '[' bullseye - == stretch ']'\n\e[0m\e[91m+ curl -D headers.txt -SL https://oryx-cdn.microsoft.io/nodejs/nodejs-bullseye-16.20.1.tar.gz - --output 16.20.1.tar.gz\n\e[0mDownloaded in 2 sec(s).\n\e[91m+ PLATFORM_BINARY_DOWNLOAD_ELAPSED_TIME=2\n+ - echo 'Downloaded in 2 sec(s).'\n+ echo Verifying checksum...\n+ headerName=x-ms-meta-checksum\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1612' - content-range: - - bytes 69953-71564/71565 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:01 GMT - etag: - - '"0x8DB8D9819BA6DD9"' - last-modified: - - Wed, 26 Jul 2023 05:21:00 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '36' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:03 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '71565' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:01 GMT - etag: - - '"0x8DB8D9819BA6DD9"' - last-modified: - - Wed, 26 Jul 2023 05:21:00 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '36' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:06 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '90501' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:04 GMT - etag: - - '"0x8DB8D981A7B1059"' - last-modified: - - Wed, 26 Jul 2023 05:21:02 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '38' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:06 GMT - x-ms-range: - - bytes=71565-75660 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "\e[0mVerifying checksum...\n\e[91m++ grep -i x-ms-meta-checksum:\n++ - tr -d '\\r'\n\e[0m\e[91m++ cat headers.txt\n\e[0m\e[91m+ checksumHeader='x-ms-meta-checksum: - 82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849'\n\e[0m\e[91m++ - echo x-ms-meta-checksum: 82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849\n\e[0m\e[91m++ - tr '[A-Z]' '[a-z]'\n\e[0m\e[91m+ checksumHeader='x-ms-meta-checksum: 82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849'\n\e[0m\e[91m+ - checksumValue=82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849\n\e[0m\e[91m+ - rm -f headers.txt\n\e[0m\e[91m+ echo Extracting contents...\n\e[0mExtracting - contents...\n\e[91m+ tar -xzf 16.20.1.tar.gz -C .\n\e[0mperforming sha512 - checksum for: nodejs...\n\e[91m+ '[' nodejs = golang ']'\n\e[0m\e[91m+ echo - 'performing sha512 checksum for: nodejs...'\n+ echo '82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849 - 16.20.1.tar.gz'\n\e[0m\e[91m+ sha512sum -c -\n\e[0m\e[91m+ rm -f 16.20.1.tar.gz\n\e[0m\e[91m+ - PLATFORM_SETUP_ELAPSED_TIME=4\n\e[0mDone in 4 sec(s).\n\n\e[91m+ echo 'Done - in 4 sec(s).'\n\e[0m\e[91m+ echo\n\e[0m\e[91m+ oryxImageDetectorFile=/opt/oryx/.imagetype\n\e[0m\e[91m+ - oryxOsDetectorFile=/opt/oryx/.ostype\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype - ']'\n\e[0m\e[91m+ '[' nodejs = dotnet ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype - ']'\n\e[0m\e[91m+ '[' nodejs = dotnet ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype - ']'\n\e[0m\e[91m+ '[' nodejs = nodejs ']'\n\e[0m\e[91m+ grep -q vso- /opt/oryx/.imagetype\n\e[0m\e[91m+ - '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' nodejs = php ']'\n\e[0m\e[91m+ - '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' nodejs = python ']'\n\e[0m\e[91m+ - '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' nodejs = java ']'\n\e[0m\e[91m+ - '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' nodejs = ruby ']'\n\e[0m\e[91m+ - '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.ostype ']'\n\e[0m\e[91m+ - '[' nodejs = python ']'\n\e[0m\e[91m+ echo\n\e[0m\e[91m+ cd /app\n\e[0m\e[91m+ - '[' -f /opt/oryx/benv ']'\n+ source /opt/oryx/benv nodejs=16.20.1 dynamic_install_root_dir=/opt\n++ - read benvEnvironmentVariable\n\e[0m\e[91m+++ set\n\e[0m\e[91m+++ grep -i '^dynamic_install_root_dir='\n\e[0m\e[91m++ - set -- DYNAMIC_INSTALL_ROOT_DIR=/opt nodejs=16.20.1 dynamic_install_root_dir=/opt\n\e[0m\e[91m++ - read benvEnvironmentVariable\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - grep -i '^php='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - set\n\e[0m\e[91m+++ grep -i '^composer='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - set\n\e[0m\e[91m+++ grep -i '^python='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - set\n+++ grep -i '^node='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - set\n\e[0m\e[91m+++ grep -i '^dotnet='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - set\n\e[0m\e[91m+++ grep -i '^hugo='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - set\n\e[0m\e[91m+++ grep -i '^ruby='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - grep -i '^golang='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - grep -i '^java='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ - grep -i '^maven='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ unset benvEnvironmentVariable\n\e[0m\e[91m+++ - benv-getDynamicInstallRootDir DYNAMIC_INSTALL_ROOT_DIR=/opt nodejs=16.20.1 - dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ local explicitDynamicInstallRootDir=\n\e[0m\e[91m+++ - [[ DYNAMIC_INSTALL_ROOT_DIR=/opt = *\\=* ]]\n\e[0m\e[91m++++ sed 's/=.*$//'\n\e[0m\e[91m++++ - echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ local name=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++++ - sed 's/^.*=//'\n\e[0m\e[91m++++ echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ - local value=/opt\n\e[0m\e[91m+++ matchesName dynamic_install_root_dir DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m+++ - local expectedName=dynamic_install_root_dir\n+++" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 71565-75660/90501 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:04 GMT - etag: - - '"0x8DB8D981A7B1059"' - last-modified: - - Wed, 26 Jul 2023 05:21:02 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '38' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:06 GMT - x-ms-range: - - bytes=75661-79756 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: " local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m+++ local - result=\n\e[0m\e[91m+++ shopt -s nocasematch\n\e[0m\e[91m+++ [[ dynamic_install_root_dir - == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n+++ result=0\n\e[0m\e[91m+++ shopt -u nocasematch\n\e[0m\e[91m+++ return - 0\n\e[0m\e[91m+++ explicitDynamicInstallRootDir=/opt\n+++ shift\n\e[0m\e[91m+++ - [[ nodejs=16.20.1 = *\\=* ]]\n\e[0m\e[91m++++ echo nodejs=16.20.1\n\e[0m\e[91m++++ - sed 's/=.*$//'\n\e[0m\e[91m+++ local name=nodejs\n\e[0m\e[91m++++ sed 's/^.*=//'\n\e[0m\e[91m++++ - echo nodejs=16.20.1\n\e[0m\e[91m+++ local value=16.20.1\n\e[0m\e[91m+++ matchesName - dynamic_install_root_dir nodejs\n\e[0m\e[91m+++ local expectedName=dynamic_install_root_dir\n\e[0m\e[91m+++ - local providedName=nodejs\n\e[0m\e[91m+++ local result=\n\e[0m\e[91m+++ shopt - -s nocasematch\n\e[0m\e[91m+++ [[ dynamic_install_root_dir == \\n\\o\\d\\e\\j\\s - ]]\n\e[0m\e[91m+++ result=1\n\e[0m\e[91m+++ shopt -u nocasematch\n+++ return - 1\n\e[0m\e[91m+++ shift\n\e[0m\e[91m+++ [[ dynamic_install_root_dir=/opt = - *\\=* ]]\n\e[0m\e[91m++++ sed 's/=.*$//'\n\e[0m\e[91m++++ echo dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ - local name=dynamic_install_root_dir\n\e[0m\e[91m++++ sed 's/^.*=//'\n\e[0m\e[91m++++ - echo dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ local value=/opt\n\e[0m\e[91m+++ - matchesName dynamic_install_root_dir dynamic_install_root_dir\n\e[0m\e[91m+++ - local expectedName=dynamic_install_root_dir\n+++ local providedName=dynamic_install_root_dir\n\e[0m\e[91m+++ - local result=\n\e[0m\e[91m+++ shopt -s nocasematch\n\e[0m\e[91m+++ [[ dynamic_install_root_dir - == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n\e[0m\e[91m+++ result=0\n\e[0m\e[91m+++ shopt -u nocasematch\n+++ return - 0\n+++ explicitDynamicInstallRootDir=/opt\n\e[0m\e[91m+++ shift\n\e[0m\e[91m+++ - [[ '' = *\\=* ]]\n\e[0m\e[91m+++ '[' -z /opt ']'\n\e[0m\e[91m+++ echo /opt\n\e[0m\e[91m++ - _benvDynamicInstallRootDir=/opt\n\e[0m\e[91m++ [[ DYNAMIC_INSTALL_ROOT_DIR=/opt - = *\\=* ]]\n\e[0m\e[91m++ benv-resolve DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ - sed 's/=.*$//'\n\e[0m\e[91m+++ echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m++ - local name=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m+++ echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ - sed 's/^.*=//'\n\e[0m\e[91m++ local value=/opt\n\e[0m\e[91m++ matchesName - nodejs DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local expectedName=nodejs\n\e[0m\e[91m++ - local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ - shopt -s nocasematch\n\e[0m\e[91m++ [[ nodejs == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ - return 1\n\e[0m\e[91m++ matchesName node DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ - local expectedName=node\n\e[0m\e[91m++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ node == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ - return 1\n\e[0m\e[91m++ matchesName node_version DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ - local expectedName=node_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ node_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=python\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ python == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python_version - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=python_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ python_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName hugo - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=hugo\n\e[0m\e[91m++ local - providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ - shopt -s nocasematch\n\e[0m\e[91m++ [[ hugo == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ - return 1\n\e[0m\e[91m++ matchesName hugo_" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 75661-79756/94793 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:04 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:06 GMT - x-ms-range: - - bytes=79757-83852 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "version DYNAMIC_INSTALL_ROOT_DIR\r\n\e[0m\e[91m++ local expectedName=hugo_version\n\e[0m\e[91m++ - local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ - shopt -s nocasematch\n\e[0m\e[91m++ [[ hugo_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ - return 1\n\e[0m\e[91m++ matchesName php DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ - local expectedName=php\n\e[0m\e[91m++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ - local result=\n++ shopt -s nocasematch\n\e[0m\e[91m++ [[ php == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ - return 1\n\e[0m\e[91m++ matchesName php_version DYNAMIC_INSTALL_ROOT_DIR\n++ - local expectedName=php_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ php_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=composer\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ composer == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer_version - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=composer_version\n++ local - providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ local result=\n++ shopt -s nocasematch\n++ - [[ composer_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=dotnet\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ dotnet == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ - return 1\n\e[0m\e[91m++ matchesName dotnet_version DYNAMIC_INSTALL_ROOT_DIR\n++ - local expectedName=dotnet_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ dotnet_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName golang - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=golang\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ golang == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName golang_version - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=golang_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ golang_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=ruby\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ ruby == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby_version - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=ruby_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ ruby_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=java\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ java == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java_version - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=java_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ java_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=maven\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ - local result=\n++ shop" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 79757-83852/94793 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:04 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:06 GMT - x-ms-range: - - bytes=83853-87948 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "t -s nocasematch\n++ [[ maven == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven_version - DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=maven_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ - local result=\n++ shopt -s nocasematch\n++ [[ maven_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ eval export 'DYNAMIC_INSTALL_ROOT_DIR='\\''/opt'\\'''\n+++ - export DYNAMIC_INSTALL_ROOT_DIR=/opt\n+++ DYNAMIC_INSTALL_ROOT_DIR=/opt\n++ - shift\n++ [[ nodejs=16.20.1 = *\\=* ]]\n++ benv-resolve nodejs=16.20.1\n\e[0m\e[91m+++ - echo nodejs=16.20.1\n\e[0m\e[91m+++ sed 's/=.*$//'\n\e[0m\e[91m++ local name=nodejs\n\e[0m\e[91m+++ - echo nodejs=16.20.1\n\e[0m\e[91m+++ sed 's/^.*=//'\n\e[0m\e[91m++ local value=16.20.1\n\e[0m\e[91m++ - matchesName nodejs nodejs\n\e[0m\e[91m++ local expectedName=nodejs\n\e[0m\e[91m++ - local providedName=nodejs\n++ local result=\n++ shopt -s nocasematch\n++ [[ - nodejs == \\n\\o\\d\\e\\j\\s ]]\n++ result=0\n++ shopt -u nocasematch\n++ - return 0\n++ '[' 1 '!=' / ']'\n\e[0m\e[91m+++ benv-getPlatformDir nodejs 16.20.1 - /opt\n\e[0m\e[91m+++ local platformDirName=nodejs\n\e[0m\e[91m+++ local userSuppliedVersion=16.20.1\n\e[0m\e[91m+++ - local dynamicInstallRootDir=/opt\n\e[0m\e[91m+++ local builtInInstallDir=/opt/nodejs\n\e[0m\e[91m+++ - local dynamicInstallDir=/opt/nodejs\n\e[0m\e[91m+++ '[' -d /opt/nodejs/16.20.1 - ']'\n\e[0m\e[91m+++ echo /opt/nodejs/16.20.1\n\e[0m\e[91m++ platformDir=/opt/nodejs/16.20.1\n\e[0m\e[91m++ - '[' /opt/nodejs/16.20.1 == NotFound ']'\n\e[0m\e[91m++ local DIR=/opt/nodejs/16.20.1/bin\n\e[0m\e[91m++ - updatePath /opt/nodejs/16.20.1/bin\n\e[0m\e[91m++ '[' '' == true ']'\n++ export - PATH=/opt/nodejs/16.20.1/bin:/usr/local/go/bin:/opt/python/latest/bin:/opt/oryx:/opt/yarn/stable/bin:/opt/hugo/lts:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n++ - PATH=/opt/nodejs/16.20.1/bin:/usr/local/go/bin:/opt/python/latest/bin:/opt/oryx:/opt/yarn/stable/bin:/opt/hugo/lts:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n++ - export node=/opt/nodejs/16.20.1/bin/node\n++ node=/opt/nodejs/16.20.1/bin/node\n++ - export npm=/opt/nodejs/16.20.1/bin/npm\n++ npm=/opt/nodejs/16.20.1/bin/npm\n++ - '[' -e /opt/nodejs/16.20.1/bin/npx ']'\n++ export npx=/opt/nodejs/16.20.1/bin/npx\n++ - npx=/opt/nodejs/16.20.1/bin/npx\n++ return 0\n++ shift\n++ [[ dynamic_install_root_dir=/opt - = *\\=* ]]\n++ benv-resolve dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ - sed 's/=.*$//'\n\e[0m\e[91m+++ echo dynamic_install_root_dir=/opt\n\e[0m\e[91m++ - local name=dynamic_install_root_dir\n\e[0m\e[91m+++ echo dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ - sed 's/^.*=//'\n\e[0m\e[91m++ local value=/opt\n++ matchesName nodejs dynamic_install_root_dir\n++ - local expectedName=nodejs\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ nodejs == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName node - dynamic_install_root_dir\n++ local expectedName=node\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ node == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName node_version - dynamic_install_root_dir\n++ local expectedName=node_version\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ node_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python - dynamic_install_root_dir\n++ local expectedName=python\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n\e[0m\e[91m++ shopt -s nocasematch\n++ [[ python == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python_version - dynamic_install_root_dir\n++ local expectedName=python_version\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ python_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ mat" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 83853-87948/94793 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:04 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:06 GMT - x-ms-range: - - bytes=87949-92044 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "chesName hugo dynamic_install_root_dir\n++ local expectedName=hugo\n++ - local providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s - nocasematch\n++ [[ hugo == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName hugo_version - dynamic_install_root_dir\n++ local expectedName=hugo_version\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ hugo_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName php - dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=php\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n\e[0m\e[91m++ shopt -s nocasematch\n\e[0m\e[91m++ [[ php == - \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r ]]\n\e[0m\e[91m++ - result=1\n\e[0m\e[91m++ shopt -u nocasematch\n++ return 1\n++ matchesName - php_version dynamic_install_root_dir\n++ local expectedName=php_version\n++ - local providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s - nocasematch\n++ [[ php_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer - dynamic_install_root_dir\n++ local expectedName=composer\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ composer == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer_version - dynamic_install_root_dir\n++ local expectedName=composer_version\n\e[0m\e[91m++ - local providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s - nocasematch\n++ [[ composer_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet - dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=dotnet\n++ local - providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s nocasematch\n++ - [[ dotnet == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet_version - dynamic_install_root_dir\n++ local expectedName=dotnet_version\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ dotnet_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n\e[0m\e[91m++ matchesName - golang dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=golang\n\e[0m\e[91m++ - local providedName=dynamic_install_root_dir\n\e[0m\e[91m++ local result=\r\n\e[0m\e[91m++ - shopt -s nocasematch\n\e[0m\e[91m++ [[ golang == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n\e[0m\e[91m++ matchesName - golang_version dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=golang_version\n++ - local providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s - nocasematch\n++ [[ golang_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby - dynamic_install_root_dir\n++ local expectedName=ruby\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ ruby == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby_version - dynamic_install_root_dir\n\e[0m\e[91m++ local expectedName=ruby_version\n\e[0m\e[91m++ - local providedName=dynamic_install_root_dir\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ - shopt -s nocasematch\n++ [[ ruby_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n\e[0m\e[91m++ matchesName - java dynamic_install_root_dir\n++ local expectedName=java\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ java == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java_version - dynamic_install_root_dir\n++ local expectedName=java_version\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasemat" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '4096' - content-range: - - bytes 87949-92044/94793 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:04 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:06 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '94793' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:04 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:07 GMT - x-ms-range: - - bytes=92045-96140 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "ch\n++ [[ java_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven - dynamic_install_root_dir\n++ local expectedName=maven\n\e[0m\e[91m++ local - providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s nocasematch\n++ - [[ maven == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven_version - dynamic_install_root_dir\n++ local expectedName=maven_version\n++ local providedName=dynamic_install_root_dir\n++ - local result=\n++ shopt -s nocasematch\n++ [[ maven_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r - ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ eval export 'dynamic_install_root_dir='\\''/opt'\\'''\n\e[0m\e[91m+++ - export dynamic_install_root_dir=/opt\n+++ dynamic_install_root_dir=/opt\n++ - shift\n++ [[ '' = *\\=* ]]\n++ '[' /tmp/BuildScriptGenerator/9f187df6fb814c7eadd8e0df0309766e/build.sh - '!=' /opt/oryx/benv ']'\n++ unset -f benv-resolve benv-versions\n++ '[' 0 - -gt 0 ']'\n+ export SOURCE_DIR\n+ export DESTINATION_DIR\n+ mkdir -p /output\n\e[0mRemoving - existing manifest file\n\e[91m+ cd /app\n+ COMMAND_MANIFEST_FILE=/app/oryx-build-commands.txt\n+ - echo 'Removing existing manifest file'\n+ rm -f /app/oryx-build-commands.txt\n\e[0m\e[91m+ - echo 'Creating directory for command manifest file if it does not exist'\n\e[0mCreating - directory for command manifest file if it does not exist\n\e[91m++ dirname - /app/oryx-build-commands.txt\n\e[0m\e[91m+ mkdir -p /app\n\e[0m\e[91m+ echo - 'Creating a manifest file...'\n\e[0mCreating a manifest file...\nNode Build - Command Manifest file created.\n\nUsing Node version:\n\e[91m+ echo 'PlatformWithVersion=Node.js - 16.20.1'\n\e[0m\e[91m+ echo 'Node Build Command Manifest file created.'\n\e[0m\e[91m+ - doc='https://docs.microsoft.com/en-us/azure/app-service/configure-language-nodejs?pivots=platform-linux#troubleshooting'\n\e[0m\e[91m+ - echo\n\e[0m\e[91m+ echo 'Using Node version:'\n\e[0m\e[91m+ node --version\n\e[0mv16.20.1\n\e[91m+ - echo\n\e[0m\nUsing Npm version:\n\e[91m+ echo BuildCommands=\n\e[0m\e[91m+ - echo Using Npm version:\n\e[0m\e[91m+ npm --version\n\e[0m8.19.4\n\e[91m+ - zippedModulesFileName=\n\e[0m\e[91m+ allModulesDirName=.oryx_all_node_modules\n\e[0m\e[91m+ - prodModulesDirName=.oryx_prod_node_modules\n\e[0m\e[91m+ PruneDevDependencies=false\n\e[0m\e[91m+ - HasProdDependencies=true\n\e[0m\e[91m+ HasDevDependencies=false\n\e[0m\e[91m+ - packageDirName=\n\e[0m\e[91m+ '[' -d .oryx_all_node_modules ']'\n\e[0m\e[91m+ - '[' false == true ']'\n\e[0m\e[91m++ whoami\n\e[0m\e[91m+ [[ root == \\r\\o\\o\\t - ]]\n\e[0m\e[91m+ chown -R root:root /app\n\e[0m\e[91m+ cd /app\n\e[0m\nRunning - 'npm install'...\n\n\e[91m+ echo\n\e[0m\e[91m+ echo 'Running '\\''npm install'\\''...'\n\e[0m\e[91m+ - echo\n\e[0m\e[91m+ printf %s ', npm install'\n\e[0m\e[91m+ npm install\n\e[0m\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2748' - content-range: - - bytes 92045-94792/94793 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:04 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:07 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '94793' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:04 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:09 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '94793' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:07 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:12 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '94793' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:09 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:16 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '94793' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:13 GMT - etag: - - '"0x8DB8D981C06F798"' - last-modified: - - Wed, 26 Jul 2023 05:21:04 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '39' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:19 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '97229' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:17 GMT - etag: - - '"0x8DB8D982352D2D2"' - last-modified: - - Wed, 26 Jul 2023 05:21:17 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '40' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:19 GMT - x-ms-range: - - bytes=94793-98888 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "added 54 packages, and audited 55 packages in 2s\n\n4 vulnerabilities - (3 high, 1 critical)\n\e[91mnpm notice \n\e[0m\nTo address all issues (including - breaking changes), run:\n npm audit fix --force\n\nRun `npm audit` for details.\n\e[91mnpm - notice New major version of npm available! 8.19.4 -> 9.8.1\nnpm notice Changelog: - \nnpm notice Run `npm install - -g npm@9.8.1` to update!\nnpm notice \n\e[0m\e[91m++ cat /opt/oryx/.imagetype\n\e[0m\e[91m+ - ReadImageType=cli\n+ '[' cli = vso-focal ']'\n+ '[' cli = vso-debian-bullseye - ']'\n\e[0m\e[91m+ rm /app/oryx-build-commands.txt\n\e[0mPreparing output...\n\e[91m+ - cd /app\n\e[0m\nCopying files to destination directory '/output'...\n\e[91m+ - '[' false == true ']'\n+ '[' /app '!=' /output ']'\n+ echo 'Preparing output...'\n+ - cd /app\n+ echo\n+ echo 'Copying files to destination directory '\\''/output'\\''...'\n+ - START_TIME=56\n+ excludedDirectories=\n+ excludedDirectories+=' --exclude - .oryx_all_node_modules'\n+ excludedDirectories+=' --exclude .oryx_prod_node_modules'\n+ - excludedDirectories+=' --exclude .git'\n+ rsync -rcE --links --exclude .oryx_all_node_modules - --exclude .oryx_prod_node_modules --exclude .git . /output\n\e[0m\e[91m+ ELAPSED_TIME=0\n\e[0m\e[91m+ - echo 'Done in 0 sec(s).'\n\e[0m\e[91m+ MANIFEST_FILE=oryx-manifest.toml\n\e[0m\e[91m+ - MANIFEST_DIR=\n\e[0mDone in 0 sec(s).\n\e[91m+ '[' -z '' ']'\n\e[0m\e[91m+ - MANIFEST_DIR=/output\n\e[0m\e[91m+ mkdir -p /output\n\e[0m\e[91m+ echo\n\e[0m\nRemoving - existing manifest file\nCreating a manifest file...\nManifest file created.\nCopying - .ostype to manifest output directory.\n\e[91m+ echo 'Removing existing manifest - file'\n\e[0m\e[91m+ rm -f /output/oryx-manifest.toml\n\e[0m\e[91m+ echo 'Creating - a manifest file...'\n\e[0m\e[91m+ echo 'NodeVersion=\"16.20.1\"'\n\e[0m\e[91m+ - echo 'nodeBuildCommandsFile=\"/app/oryx-build-commands.txt\"'\n\e[0m\e[91m+ - echo 'Frameworks=\"Express\"'\n\e[0m\e[91m+ echo 'OperationId=\"8d88298df8d0bdd6\"'\n\e[0m\nDone - in 56 sec(s).\n\e[91m+ echo 'SourceDirectoryInBuildContainer=\"/app\"'\n\e[0m\e[91m+ - echo 'PlatformName=\"nodejs\"'\n+ echo 'CompressDestinationDir=\"false\"'\n+ - echo 'Manifest file created.'\n+ OS_TYPE_SOURCE_DIR=/opt/oryx/.ostype\n+ '[' - -f /opt/oryx/.ostype ']'\n+ echo 'Copying .ostype to manifest output directory.'\n+ - cp /opt/oryx/.ostype /output/.ostype\n+ TOTAL_EXECUTION_ELAPSED_TIME=56\n+ - echo\n+ echo 'Done in 56 sec(s).'\n\e[0mRemoving intermediate container 26c493c8f0d4\n - ---> 8a1c917fcff8\nStep 6/10 : FROM mcr.microsoft.com/oryx/${RUNTIME}\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '2436' - content-range: - - bytes 94793-97228/97229 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:17 GMT - etag: - - '"0x8DB8D982352D2D2"' - last-modified: - - Wed, 26 Jul 2023 05:21:17 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '40' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:19 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '97229' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:17 GMT - etag: - - '"0x8DB8D982352D2D2"' - last-modified: - - Wed, 26 Jul 2023 05:21:17 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '40' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:21 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '99067' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:19 GMT - etag: - - '"0x8DB8D98248A9031"' - last-modified: - - Wed, 26 Jul 2023 05:21:19 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '41' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:21 GMT - x-ms-range: - - bytes=97229-101324 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "18: Pulling from oryx/node\n34df401c391c: Already exists\n6fdd0e5b72cc: - Already exists\n3e667686bcfb: Pulling fs layer\n08fee8e7f70d: Pulling fs layer\naa649acedacd: - Pulling fs layer\n7c35038c535d: Pulling fs layer\nb34377fff786: Pulling fs - layer\ned5b52acd5ef: Pulling fs layer\nba9f3006808a: Pulling fs layer\ne154da39ba4c: - Pulling fs layer\nfadd7ccb0a4b: Pulling fs layer\nd9793d6f4f08: Pulling fs - layer\n6720aab929c9: Pulling fs layer\n32deea1a7492: Pulling fs layer\n1d9087acb1e1: - Pulling fs layer\n1a6da6a96e94: Pulling fs layer\ne7ee06712709: Pulling fs - layer\n13a1a3ecc9ed: Pulling fs layer\n7c35038c535d: Waiting\nb34377fff786: - Waiting\ned5b52acd5ef: Waiting\nba9f3006808a: Waiting\ne154da39ba4c: Waiting\nfadd7ccb0a4b: - Waiting\nd9793d6f4f08: Waiting\n6720aab929c9: Waiting\n32deea1a7492: Waiting\n1d9087acb1e1: - Waiting\n1a6da6a96e94: Waiting\ne7ee06712709: Waiting\n13a1a3ecc9ed: Waiting\naa649acedacd: - Verifying Checksum\naa649acedacd: Download complete\n3e667686bcfb: Verifying - Checksum\n3e667686bcfb: Download complete\n7c35038c535d: Verifying Checksum\n7c35038c535d: - Download complete\nb34377fff786: Download complete\n3e667686bcfb: Pull complete\nba9f3006808a: - Download complete\ne154da39ba4c: Download complete\ned5b52acd5ef: Verifying - Checksum\ned5b52acd5ef: Download complete\nfadd7ccb0a4b: Verifying Checksum\nfadd7ccb0a4b: - Download complete\n6720aab929c9: Verifying Checksum\n6720aab929c9: Download - complete\n32deea1a7492: Verifying Checksum\n32deea1a7492: Download complete\n1d9087acb1e1: - Verifying Checksum\n1d9087acb1e1: Download complete\n08fee8e7f70d: Verifying - Checksum\n08fee8e7f70d: Download complete\n08fee8e7f70d: Pull complete\nd9793d6f4f08: - Verifying Checksum\nd9793d6f4f08: Download complete\naa649acedacd: Pull complete\n7c35038c535d: - Pull complete\nb34377fff786: Pull complete\ned5b52acd5ef: Pull complete\nba9f3006808a: - Pull complete\ne154da39ba4c: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1838' - content-range: - - bytes 97229-99066/99067 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:19 GMT - etag: - - '"0x8DB8D98248A9031"' - last-modified: - - Wed, 26 Jul 2023 05:21:19 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '41' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:22 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '99067' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:19 GMT - etag: - - '"0x8DB8D98248A9031"' - last-modified: - - Wed, 26 Jul 2023 05:21:19 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '41' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:24 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '99124' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:22 GMT - etag: - - '"0x8DB8D98263B3B41"' - last-modified: - - Wed, 26 Jul 2023 05:21:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '42' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:24 GMT - x-ms-range: - - bytes=99067-103162 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "fadd7ccb0a4b: Pull complete\nd9793d6f4f08: Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '57' - content-range: - - bytes 99067-99123/99124 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:22 GMT - etag: - - '"0x8DB8D98263B3B41"' - last-modified: - - Wed, 26 Jul 2023 05:21:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '42' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:24 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '99124' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:22 GMT - etag: - - '"0x8DB8D98263B3B41"' - last-modified: - - Wed, 26 Jul 2023 05:21:21 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '42' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:27 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '99376' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:25 GMT - etag: - - '"0x8DB8D982796D300"' - last-modified: - - Wed, 26 Jul 2023 05:21:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '43' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:27 GMT - x-ms-range: - - bytes=99124-103219 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "6720aab929c9: Pull complete\ne7ee06712709: Verifying Checksum\ne7ee06712709: - Download complete\n13a1a3ecc9ed: Verifying Checksum\n13a1a3ecc9ed: Download - complete\n1a6da6a96e94: Verifying Checksum\n1a6da6a96e94: Download complete\n32deea1a7492: - Pull complete\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '252' - content-range: - - bytes 99124-99375/99376 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:25 GMT - etag: - - '"0x8DB8D982796D300"' - last-modified: - - Wed, 26 Jul 2023 05:21:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '43' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:27 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '99376' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:25 GMT - etag: - - '"0x8DB8D982796D300"' - last-modified: - - Wed, 26 Jul 2023 05:21:24 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '43' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:30 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '99882' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:28 GMT - etag: - - '"0x8DB8D9829058F1E"' - last-modified: - - Wed, 26 Jul 2023 05:21:26 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '44' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:30 GMT - x-ms-range: - - bytes=99376-103471 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "1d9087acb1e1: Pull complete\n1a6da6a96e94: Pull complete\ne7ee06712709: - Pull complete\n13a1a3ecc9ed: Pull complete\nDigest: sha256:7fee6a0b0d209e9a6b9846d86e1ded3fcd5815db5fe55c6e52ed91f2eed153d2\nStatus: - Downloaded newer image for mcr.microsoft.com/oryx/node:18\n ---> e1a67efca8d5\nStep - 7/10 : WORKDIR /app\n ---> Running in 762dd75c1d50\nRemoving intermediate - container 762dd75c1d50\n ---> a679065cd08e\nStep 8/10 : COPY --from=build - /output .\n ---> 928ebfe97bca\nStep 9/10 : RUN oryx create-script -bindPort - 8080\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '506' - content-range: - - bytes 99376-99881/99882 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:28 GMT - etag: - - '"0x8DB8D9829058F1E"' - last-modified: - - Wed, 26 Jul 2023 05:21:26 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '44' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:30 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '99882' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:28 GMT - etag: - - '"0x8DB8D9829058F1E"' - last-modified: - - Wed, 26 Jul 2023 05:21:26 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '44' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:32 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '100342' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:30 GMT - etag: - - '"0x8DB8D982A7E9FE6"' - last-modified: - - Wed, 26 Jul 2023 05:21:29 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '45' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:32 GMT - x-ms-range: - - bytes=99882-103977 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: " ---> Running in f20ce0266ad6\nFound build manifest file at '/app/oryx-manifest.toml'. - Deserializing it...\nBuild Operation ID: 8d88298df8d0bdd6\nEnvironment Variables - for Application Insight's IPA Codeless Configuration exists..\nWriting output - script to 'run.sh'\nRemoving intermediate container f20ce0266ad6\n ---> 5d1db9dbbeb9\nStep - 10/10 : ENTRYPOINT [\"/app/run.sh\"]\n ---> Running in 169a4075f86b\nRemoving - intermediate container 169a4075f86b\n ---> a234a53af800\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '460' - content-range: - - bytes 99882-100341/100342 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:30 GMT - etag: - - '"0x8DB8D982A7E9FE6"' - last-modified: - - Wed, 26 Jul 2023 05:21:29 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '45' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:32 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '100342' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:30 GMT - etag: - - '"0x8DB8D982A7E9FE6"' - last-modified: - - Wed, 26 Jul 2023 05:21:29 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '45' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:35 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '101890' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:33 GMT - etag: - - '"0x8DB8D982BD55B25"' - last-modified: - - Wed, 26 Jul 2023 05:21:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '46' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:35 GMT - x-ms-range: - - bytes=100342-104437 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "Successfully built a234a53af800\nSuccessfully tagged containerapp000004.azurecr.io/containerapp000003:20230725221922064162\n2023/07/26 - 05:21:29 Successfully executed container: acb_step_1\n2023/07/26 05:21:29 - Executing step ID: acb_step_2. Timeout(sec): 1800, Working directory: '', - Network: 'acb_default_network'\n2023/07/26 05:21:29 Pushing image: containerapp000004.azurecr.io/containerapp000003:20230725221922064162, - attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/containerapp000003]\n63e9b65e94b8: - Preparing\n47ab87c808c7: Preparing\nae16e09a226e: Preparing\nbe531adc4648: - Preparing\n9fb21ae5905f: Preparing\n9470ed8f29bd: Preparing\n07de6e17726e: - Preparing\nc375a178c1dc: Preparing\n00ca1a725dca: Preparing\nfb9f97f45be9: - Preparing\n75a70e7e603e: Preparing\nfaf30a27d538: Preparing\n4898cf716b40: - Preparing\ne16a8163ca1d: Preparing\nafe87d16b16f: Preparing\n7241e0193a24: - Preparing\nc2963cac91e6: Preparing\n438f35b71861: Preparing\nd3ca9c4508e6: - Preparing\n42369e26e6d6: Preparing\n3dec696a3faa: Preparing\n9470ed8f29bd: - Waiting\n07de6e17726e: Waiting\nc375a178c1dc: Waiting\n00ca1a725dca: Waiting\nfb9f97f45be9: - Waiting\n75a70e7e603e: Waiting\nfaf30a27d538: Waiting\n4898cf716b40: Waiting\ne16a8163ca1d: - Waiting\nafe87d16b16f: Waiting\n7241e0193a24: Waiting\nc2963cac91e6: Waiting\n438f35b71861: - Waiting\nd3ca9c4508e6: Waiting\n42369e26e6d6: Waiting\n3dec696a3faa: Waiting\nae16e09a226e: - Pushed\n63e9b65e94b8: Pushed\n47ab87c808c7: Pushed\n9fb21ae5905f: Pushed\nbe531adc4648: - Pushed\n07de6e17726e: Pushed\n9470ed8f29bd: Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1512' - content-range: - - bytes 100342-101889/101890 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:33 GMT - etag: - - '"0x8DB8D982BD55B25"' - last-modified: - - Wed, 26 Jul 2023 05:21:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '46' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:35 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '101890' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:33 GMT - etag: - - '"0x8DB8D982BD55B25"' - last-modified: - - Wed, 26 Jul 2023 05:21:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '46' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:37 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '101890' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:35 GMT - etag: - - '"0x8DB8D982BD55B25"' - last-modified: - - Wed, 26 Jul 2023 05:21:31 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '46' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:40 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '101954' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:38 GMT - etag: - - '"0x8DB8D982F6B8F74"' - last-modified: - - Wed, 26 Jul 2023 05:21:37 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '47' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:40 GMT - x-ms-range: - - bytes=101890-105985 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "75a70e7e603e: Pushed\nfaf30a27d538: Pushed\n00ca1a725dca: Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '64' - content-range: - - bytes 101890-101953/101954 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:38 GMT - etag: - - '"0x8DB8D982F6B8F74"' - last-modified: - - Wed, 26 Jul 2023 05:21:37 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '47' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:40 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '101954' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:38 GMT - etag: - - '"0x8DB8D982F6B8F74"' - last-modified: - - Wed, 26 Jul 2023 05:21:37 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '47' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:43 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '102102' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:41 GMT - etag: - - '"0x8DB8D9830DC1E44"' - last-modified: - - Wed, 26 Jul 2023 05:21:39 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '48' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:43 GMT - x-ms-range: - - bytes=101954-106049 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "c375a178c1dc: Pushed\n4898cf716b40: Pushed\ne16a8163ca1d: Pushed\n438f35b71861: - Pushed\nfb9f97f45be9: Pushed\nd3ca9c4508e6: Pushed\nafe87d16b16f: Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '148' - content-range: - - bytes 101954-102101/102102 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:41 GMT - etag: - - '"0x8DB8D9830DC1E44"' - last-modified: - - Wed, 26 Jul 2023 05:21:39 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '48' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:44 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '102102' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:41 GMT - etag: - - '"0x8DB8D9830DC1E44"' - last-modified: - - Wed, 26 Jul 2023 05:21:39 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '48' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:46 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '102102' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:43 GMT - etag: - - '"0x8DB8D9830DC1E44"' - last-modified: - - Wed, 26 Jul 2023 05:21:39 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '48' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:49 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '102187' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:46 GMT - etag: - - '"0x8DB8D983413FAEF"' - last-modified: - - Wed, 26 Jul 2023 05:21:45 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '49' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:49 GMT - x-ms-range: - - bytes=102102-106197 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "7241e0193a24: Pushed\nc2963cac91e6: Pushed\n42369e26e6d6: Pushed\n3dec696a3faa: - Pushed\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '85' - content-range: - - bytes 102102-102186/102187 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:46 GMT - etag: - - '"0x8DB8D983413FAEF"' - last-modified: - - Wed, 26 Jul 2023 05:21:45 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '49' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:49 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '102187' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:46 GMT - etag: - - '"0x8DB8D983413FAEF"' - last-modified: - - Wed, 26 Jul 2023 05:21:45 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '49' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:52 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '103586' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:49 GMT - etag: - - '"0x8DB8D9835DF89C4"' - last-modified: - - Wed, 26 Jul 2023 05:21:48 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '51' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-complete: - - successful - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:52 GMT - x-ms-range: - - bytes=102187-106282 - x-ms-version: - - '2018-11-09' - method: GET - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: "20230725221922064162: digest: sha256:c9a619a0133d8103fc047d2e681e556cc19c39f65cd8a8bc865f898fbf352108 - size: 4716\n2023/07/26 05:21:46 Successfully pushed image: containerapp000004.azurecr.io/containerapp000003:20230725221922064162\n2023/07/26 - 05:21:46 Step ID: acb_step_0 marked as successful (elapsed time in seconds: - 10.809881)\n2023/07/26 05:21:46 Step ID: acb_step_1 marked as successful (elapsed - time in seconds: 92.169552)\n2023/07/26 05:21:46 Populating digests for step - ID: acb_step_1...\n2023/07/26 05:21:47 Successfully populated digests for - step ID: acb_step_1\n2023/07/26 05:21:47 Step ID: acb_step_2 marked as successful - (elapsed time in seconds: 16.919563)\n2023/07/26 05:21:47 The following dependencies - were found:\n2023/07/26 05:21:47 \n- image:\n registry: containerapp000004.azurecr.io\n - \ repository: containerapp000003\n tag: \"20230725221922064162\"\n digest: - sha256:c9a619a0133d8103fc047d2e681e556cc19c39f65cd8a8bc865f898fbf352108\n - \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: oryx/node\n - \ tag: \"18\"\n digest: sha256:7fee6a0b0d209e9a6b9846d86e1ded3fcd5815db5fe55c6e52ed91f2eed153d2\n - \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: - oryx/cli\n tag: debian-bullseye-stable\n digest: sha256:9da0586bddf951653dbca665361c8be7bebfeff49d55b66795cf7ca613b8d8ba\n - \ git: {}\n\r\nRun ID: ca1 was successful after 2m5s\r\n" - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '1375' - content-range: - - bytes 102187-103585/103586 - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:49 GMT - etag: - - '"0x8DB8D9835DF89C4"' - last-modified: - - Wed, 26 Jul 2023 05:21:48 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '51' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-complete: - - successful - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 206 - message: Partial Content -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) - x-ms-date: - - Wed, 26 Jul 2023 05:21:52 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://eusmanaged36.blob.core.windows.net/277717cb153b4bf7bf7f9c5150a927fb-dkws0mnlx2/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T06%3A29%3A43Z&sr=b&sp=r&sig=C%2FfRWy%2FLtMZe0jJNZ45dkt4xRXpKXXDklL40G7MuqGw%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-disposition: - - '' - content-encoding: - - utf-8 - content-length: - - '103586' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:50 GMT - etag: - - '"0x8DB8D9835DF89C4"' - last-modified: - - Wed, 26 Jul 2023 05:21:48 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-committed-block-count: - - '51' - x-ms-blob-type: - - AppendBlob - x-ms-creation-time: - - Wed, 26 Jul 2023 05:19:43 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-complete: - - successful - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' - status: - code: 200 - message: OK -- request: - body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", - "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "U3lgRQcQqyXe7nEaMgmlyO7TY0wpgqbpgHiNAsVqOb+ACRCuEYve"}], "activeRevisionsMode": - "single", "ingress": {"fqdn": null, "external": true, "targetPort": 8080, "transport": - "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": - null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", - "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], - "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": - "containerapp000004.azurecr.io/containerapp000003:20230725221922064162", "name": - "containerapp000003", "command": null, "args": null, "env": null, "resources": - null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": - null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '1227' - Content-Type: - - application/json - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:21:51.1465116Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:21:51.1465116Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["51.124.56.215"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.politesmoke-22daee02.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221922064162","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db?api-version=2023-04-01-preview&azureAsyncOperation=true - cache-control: - - no-cache - content-length: - - '2405' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-ratelimit-remaining-subscription-resource-requests: - - '698' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db","name":"d0b1d5ee-85b4-40d9-a87b-e6f997e054db","status":"InProgress","startTime":"2023-07-26T05:21:52.0310909"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 0526F7107FFB4E0A830240154F0A10EF Ref B: CO6AA3150220011 Ref C: 2023-07-26T05:21:54Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db","name":"d0b1d5ee-85b4-40d9-a87b-e6f997e054db","status":"InProgress","startTime":"2023-07-26T05:21:52.0310909"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:21:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C3CE168263AE43B3A93461623B804A1B Ref B: CO6AA3150218031 Ref C: 2023-07-26T05:21:57Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d0b1d5ee-85b4-40d9-a87b-e6f997e054db","name":"d0b1d5ee-85b4-40d9-a87b-e6f997e054db","status":"Succeeded","startTime":"2023-07-26T05:21:52.0310909"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '281' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:22:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 47FB1755E16146FC84AB0A0DEF2421BD Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:22:00Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:21:51.1465116","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:21:51.1465116"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["51.124.56.215"],"latestRevisionName":"containerapp000003--wpzwaxs","latestReadyRevisionName":"containerapp000003--wpzwaxs","latestRevisionFqdn":"containerapp000003--wpzwaxs.politesmoke-22daee02.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.politesmoke-22daee02.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221922064162","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '2537' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:22:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 0D02C0EB89EA4EC9B70ED7E8E219A5F2 Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:22:01Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:22:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: AB716172063445FDAAA84979E44F83F5 Ref B: CO6AA3150217027 Ref C: 2023-07-26T05:22:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:21:51.1465116","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:21:51.1465116"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["51.124.56.215"],"latestRevisionName":"containerapp000003--wpzwaxs","latestReadyRevisionName":"containerapp000003--wpzwaxs","latestRevisionFqdn":"containerapp000003--wpzwaxs.politesmoke-22daee02.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.politesmoke-22daee02.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230725221922064162","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '2537' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:22:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 4102B7DD1CC74A5A83E0BC0DC3DE709F Ref B: CO6AA3150218021 Ref C: 2023-07-26T05:22:02Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml deleted file mode 100644 index 206412cc4c3..00000000000 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml +++ /dev/null @@ -1,4152 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C380F8D5A9AE4B0B8A0E35693CA00161 Ref B: CO6AA3150217049 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 18475091848B482BBF1FA075DFEEBD35 Ref B: CO6AA3150219027 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D0055AF10B7E4A81AAA46AA294BB9230 Ref B: CO6AA3150220051 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 70C8B5EE37A3413EB0D97FFED6735AFA Ref B: CO6AA3150219031 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"querypacks","locations":["West Central - US","East US","South Central US","North Europe","West Europe","Southeast Asia","West - US 2","UK South","Canada Central","Central India","Japan East","Australia - East","Korea Central","France Central","Central US","East US 2","East Asia","West - US","South Africa North","North Central US","Brazil South","Switzerland North","Norway - East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland - West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia - Central","France South","South India","Korea South","Jio India Central","Jio - India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East - US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Switzerland North","Switzerland West","Germany West Central","Australia - Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway - East","Norway West","France South","South India","Korea South","Jio India - Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '13285' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: BA6BFA25D92045A1A62827910E8FE459 Ref B: CO6AA3150219045 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"querypacks","locations":["West Central - US","East US","South Central US","North Europe","West Europe","Southeast Asia","West - US 2","UK South","Canada Central","Central India","Japan East","Australia - East","Korea Central","France Central","Central US","East US 2","East Asia","West - US","South Africa North","North Central US","Brazil South","Switzerland North","Norway - East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland - West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia - Central","France South","South India","Korea South","Jio India Central","Jio - India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia East","Australia - Central","France Central","Korea Central","North Europe","Central US","East - Asia","East US 2","South Central US","North Central US","West US","UK West","South - Africa North","Brazil South","Switzerland North","Switzerland West","Germany - West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East - US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Switzerland North","Switzerland West","Germany West Central","Australia - Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway - East","Norway West","France South","South India","Korea South","Jio India - Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East - US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan - East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia - East","France Central","Korea Central","North Europe","Central US","East Asia","East - US 2","South Central US","North Central US","West US","UK West","South Africa - North","Brazil South","Switzerland North","Switzerland West","Germany West - Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil - Southeast","Norway East","Norway West","France South","South India","Korea - South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '13285' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 72249BCFDC0B4F7EA1D611D21A832FF9 Ref B: CO6AA3150219051 Ref C: 2023-07-26T05:18:13Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": - "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '130' - Content-Type: - - application/json - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.8696121Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.8696121Z","modifiedDate":"2023-07-26T05:18:14.8696121Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp","name":"workspace-clitestrgvv6nyarykwraocx2cfvnp","type":"Microsoft.OperationalInsights/workspaces"}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '891' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp?api-version=2021-12-01-preview - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 3153BEF638FD47559857DC09863204B1 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:13Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T05:18:14.8696121Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T05:18:14.8696121Z","modifiedDate":"2023-07-26T05:18:14.8696121Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp","name":"workspace-clitestrgvv6nyarykwraocx2cfvnp","type":"Microsoft.OperationalInsights/workspaces"}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '891' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 168F3D37200B490DB4F3F30ECC06457E Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:18:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgvv6nyarykwraocx2cfvnp/sharedKeys?api-version=2020-08-01 - response: - body: - string: '{"primarySharedKey":"WVJuQIMl5CuL/o66bEpWnT9ljH52D8fsZT9YHg+lqtMj4veoMmo9OYv0DpHZ8LU7vgr6Q+3GBXtlBeDv3L2WxA==","secondarySharedKey":"sAbg1iKKPSPLDC5USIUmQdG1LuRz+kPAIzKJF2HDN4ebv87Ltm8u0E7GB6yB3EAV/WvLW1Iw/heuCt0p+TA/Kw=="}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 - cache-control: - - no-cache - content-length: - - '223' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-msedge-ref: - - 'Ref A: 67DC1496B8244D9098B0DBC5040E90D9 Ref B: CO6AA3150220051 Ref C: 2023-07-26T05:18:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": - null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "5b1af85e-56e9-44d4-8dab-714ee4e757b2", - "sharedKey": "WVJuQIMl5CuL/o66bEpWnT9ljH52D8fsZT9YHg+lqtMj4veoMmo9OYv0DpHZ8LU7vgr6Q+3GBXtlBeDv3L2WxA=="}}, - "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": - false}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '450' - Content-Type: - - application/json - ParameterSetName: - - -g -n -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-msedge-ref: - - 'Ref A: 09A0123463FD49A496217CBE0105BE70 Ref B: CO6AA3150217029 Ref C: 2023-07-26T05:18:16Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C11925DA8BE84680BFE1965857CF1ABB Ref B: CO6AA3150218037 Ref C: 2023-07-26T05:18:27Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 452E78CF050B4351B1BDDDA81F374BC3 Ref B: CO6AA3150218033 Ref C: 2023-07-26T05:18:29Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D8E80C1751984F5F9748D1D8073D25C8 Ref B: CO6AA3150218023 Ref C: 2023-07-26T05:18:32Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 56DB0CDB28E24FB8971E8EED3841060E Ref B: CO6AA3150219029 Ref C: 2023-07-26T05:18:35Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2C8F86D4C8224CC69C714F5573C3F3B1 Ref B: CO6AA3150220011 Ref C: 2023-07-26T05:18:38Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 38DEF9DEBFE84DEDB9BCC360D1A8156E Ref B: CO6AA3150220039 Ref C: 2023-07-26T05:18:41Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3843C082EEB5463E9B6AD9071701A060 Ref B: CO6AA3150219053 Ref C: 2023-07-26T05:18:44Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 52D962CA520A4C7BB1E495EEE9ACA094 Ref B: CO6AA3150220009 Ref C: 2023-07-26T05:18:46Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 59A88747BD5444B2B5F184C999F5A0BB Ref B: CO6AA3150218039 Ref C: 2023-07-26T05:18:49Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C46C5C88E75749E98695F376183E4CEA Ref B: CO6AA3150220053 Ref C: 2023-07-26T05:18:52Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CEA50A1E12FA4BE59C707219B5A5F4EC Ref B: CO6AA3150219011 Ref C: 2023-07-26T05:18:54Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:18:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C6729B63F9774BDDAA2B52B5A971C291 Ref B: CO6AA3150217009 Ref C: 2023-07-26T05:18:57Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3579638BA4CC49D38BF174EF0A82F12B Ref B: CO6AA3150220035 Ref C: 2023-07-26T05:18:59Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A090EB3A8C2A48E0856D66408F9AD964 Ref B: CO6AA3150220011 Ref C: 2023-07-26T05:19:02Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 89FAFB54E77E4A4D92291EC5EC0FF679 Ref B: CO6AA3150219031 Ref C: 2023-07-26T05:19:04Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D2E4396990B042F5A401F7B78BB675EE Ref B: CO6AA3150220047 Ref C: 2023-07-26T05:19:07Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1A6DFA67ADA24340BEAA73BB37AE2CCC Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:19:11Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CFC492A7F209488D8D57C351955C2579 Ref B: CO6AA3150217027 Ref C: 2023-07-26T05:19:13Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"InProgress","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 4A776780D143452FA3B93B9E2B12D845 Ref B: CO6AA3150220025 Ref C: 2023-07-26T05:19:16Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/4cd73bc4-d384-4e23-88fe-35ecc217849f","name":"4cd73bc4-d384-4e23-88fe-35ecc217849f","status":"Succeeded","startTime":"2023-07-26T05:18:26.7612538"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '287' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: AF738B49B76945C199C214E8B8446B63 Ref B: CO6AA3150220025 Ref C: 2023-07-26T05:19:18Z' - 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 -l - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: EA2F58FED0604AB889FA86B68078C111 Ref B: CO6AA3150217011 Ref C: 2023-07-26T05:19:19Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": - true, "anonymousPullEnabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1377' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F15B3A77675F4D14B3AEF2F483E4A0F5 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:20Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview - response: - body: - string: '{"status":"Creating"}' - headers: - api-supported-versions: - - 2022-02-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 103673303F744BBAACBE3E42318AAD66 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview - response: - body: - string: '{"status":"Succeeded"}' - headers: - api-supported-versions: - - 2022-02-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-fac567eb-2b73-11ee-bd06-bce92fa43675?api-version=2022-02-01-preview - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 869B2A8CF7914C7A858DE127FAE0A6DF Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --admin-enabled - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1378' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C5D06483EA4D40819C4F6588A6C30FA2 Ref B: CO6AA3150219037 Ref C: 2023-07-26T05:19:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr credential show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1378' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr credential show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview - response: - body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"qbWyw0+mnDJlbg8i+4TxtIQ5uSpQVpzr9RVsarwMTd+ACRBLPLmY"},{"name":"password2","value":"ZlRCmmAFZYLrIdGJDHFpXG3nsD9kUVuie1RomH9pKO+ACRDd55cX"}]}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '214' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 26 Jul 2023 05:19:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:18:16.9134149","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:18:16.9134149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudocean-e7b2bacc.westeurope.azurecontainerapps.io","staticIp":"20.123.228.164","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"5b1af85e-56e9-44d4-8dab-714ee4e757b2","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1540' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '234' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn37hfrmloz6jtk2snhwvzqaiemzxxmjtsqkgngpw3kpqzd4pffzxg3fmwlj7pkbaq/providers/Microsoft.ContainerRegistry/registries/containerappjnakgsbs3bbp","name":"containerappjnakgsbs3bbp","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6516' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - '2022-12-01' - cache-control: - - no-cache - content-length: - - '1378' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 26 Jul 2023 05:19:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list - response: - body: - string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n - \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n - \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n - \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n - \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n - \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n - \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n - \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n - \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n - \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n - \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n - \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n - \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n - \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n - \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n - \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n - \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n - \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n - \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n - \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n - \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n - \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n - \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n - \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n - \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n - \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n - \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n - \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n - \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n - \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n - \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n - \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n - \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n - \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n - \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n - \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n - \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n - \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n - \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n - \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n - \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n - \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n - \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n - \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n - \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n - \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n - \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n - \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n - \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n - \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n - \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n - \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n - \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n - \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n - \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n - \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n - \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n - \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n - \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n - \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n - \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n - \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n - \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n - \ ]\n}" - headers: - cache-control: - - max-age=300 - content-length: - - '5624' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:44 GMT - etag: - - '0x8DB8D93775B3FAE' - last-modified: - - Wed, 26 Jul 2023 04:47:50 GMT - x-cache: - - TCP_HIT - x-mcr-privacy: - - https://privacy.microsoft.com/en-us/privacystatement - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - x-msedge-ref: - - 'Ref A: 416756C3D2984ADC8BDD727644F2A96F Ref B: WSTEDGE1007 Ref C: 2023-07-26T05:19:45Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list - response: - body: - string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n - \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n - \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n - \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n - \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n - \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n - \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n - \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n - \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n - \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n - \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n - \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n - \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n - \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n - \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n - \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n - \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n - \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n - \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n - \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n - \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n - \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n - \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n - \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n - \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n - \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n - \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n - \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n - \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n - \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n - \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n - \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n - \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n - \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n - \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n - \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n - \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n - \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n - \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n - \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n - \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n - \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n - \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n - \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n - \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n - \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n - \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n - \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n - \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n - \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n - \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n - \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n - \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n - \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n - \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n - \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n - \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n - \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n - \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n - \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n - \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n - \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n - \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n - \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n - \ ]\n}" - headers: - cache-control: - - max-age=300 - content-length: - - '5624' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:19:47 GMT - etag: - - '0x8DB8D97AC6B43E5' - last-modified: - - Wed, 26 Jul 2023 05:17:57 GMT - x-cache: - - TCP_MISS - x-mcr-privacy: - - https://privacy.microsoft.com/en-us/privacystatement - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - x-msedge-ref: - - 'Ref A: AA615634CA914BF3A88C2ED5F9D5C358 Ref B: CO1EDGE1213 Ref C: 2023-07-26T05:19:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm3mx7nmzviqbm2zt3oysvmqpamfkyygosruo5abfs4qbwa6k7qixh4gsedjdoqm7g/providers/Microsoft.ContainerRegistry/registries/containerapp6yjwfvmafo46","name":"containerapp6yjwfvmafo46","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:04.5216079Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:04.5216079Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglep7rntu2kwnh4j2n4ynhkvuqfzlfjb3l7zvotevo2m7ezmsltcyoao7xjf7zhvwt/providers/Microsoft.ContainerRegistry/registries/containerappc7bswpzki4nh","name":"containerappc7bswpzki4nh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:05.0882353Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:05.0882353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn37hfrmloz6jtk2snhwvzqaiemzxxmjtsqkgngpw3kpqzd4pffzxg3fmwlj7pkbaq/providers/Microsoft.ContainerRegistry/registries/containerappjnakgsbs3bbp","name":"containerappjnakgsbs3bbp","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:06.1629303Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:06.1629303Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6516' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 26971C6F9B42411A93A28AC692190182 Ref B: CO6AA3150219049 Ref C: 2023-07-26T05:20:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1378' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: FD9815D577944EE1B6F4E4C746F23761 Ref B: CO6AA3150220017 Ref C: 2023-07-26T05:20:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://containerapp000004.azurecr.io/v2/ - response: - body: - string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, - visit https://aka.ms/acr/authorization for more information.","detail":null}]} - - ' - headers: - access-control-expose-headers: - - Docker-Content-Digest - - WWW-Authenticate - - Link - - X-Ms-Correlation-Request-Id - connection: - - keep-alive - content-length: - - '149' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:05 GMT - docker-distribution-api-version: - - registry/2.0 - server: - - openresty - strict-transport-security: - - max-age=31536000; includeSubDomains - - max-age=31536000; includeSubDomains - www-authenticate: - - Bearer realm="https://containerapp6mfrefs64x3m.azurecr.io/oauth2/token",service="containerapp6mfrefs64x3m.azurecr.io" - x-content-type-options: - - nosniff - status: - code: 401 - message: Unauthorized -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 - (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:19:21.187729+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:19:21.187729+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T05:19:21.187729Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T05:19:28.0173566+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - 2022-02-01-preview - cache-control: - - no-cache - content-length: - - '1378' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D5E4B3050BF84882A3774212C046C9FB Ref B: CO6AA3150218035 Ref C: 2023-07-26T05:20:06Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://containerapp000004.azurecr.io/v2/ - response: - body: - string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, - visit https://aka.ms/acr/authorization for more information.","detail":null}]} - - ' - headers: - access-control-expose-headers: - - Docker-Content-Digest - - WWW-Authenticate - - Link - - X-Ms-Correlation-Request-Id - connection: - - keep-alive - content-length: - - '149' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:06 GMT - docker-distribution-api-version: - - registry/2.0 - server: - - openresty - strict-transport-security: - - max-age=31536000; includeSubDomains - - max-age=31536000; includeSubDomains - www-authenticate: - - Bearer realm="https://containerapp6mfrefs64x3m.azurecr.io/oauth2/token",service="containerapp6mfrefs64x3m.azurecr.io" - x-content-type-options: - - nosniff - status: - code: 401 - message: Unauthorized -- request: - body: grant_type=access_token&service=containerapp6mfrefs64x3m.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyIsImtpZCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjkwMzQ3MzkwLCJuYmYiOjE2OTAzNDczOTAsImV4cCI6MTY5MDM1MTg2MiwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2YzOTM4ZTg3LThjMjUtNDExZS1hN2E0LTc5ZjMzMDM1Yjk1ZS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFVBQUFBQzdjT0FsaXNnQkdYQmlQblowcEJHQk5jSU91ejFmTExxaHpVYWlleGFsWmo5TlVGRG9lNEhYckZwdEF5ZlMvc0hDQlRwVEVhVmxEWiswL1dGVjNQdUYrbzRaU2EzRE5WZk1qcisrMGtMSTQ9IiwiYW1yIjpbInJzYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiZDNlODYyMTQtYmZiMy00ODdiLWE3MGItZWMxYTczZDE2YmQ3IiwiZmFtaWx5X25hbWUiOiJQYXJ0aGFzYXJhdGh5IiwiZ2l2ZW5fbmFtZSI6IlNuZWhhIiwiaXBhZGRyIjoiMjAwMTo0ODk4OjgwZTg6ODpmOTkzOjNiMDQ6MzRmMDplYmM1IiwibmFtZSI6IlNuZWhhIFBhcnRoYXNhcmF0aHkiLCJvaWQiOiJmMzkzOGU4Ny04YzI1LTQxMWUtYTdhNC03OWYzMzAzNWI5NWUiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctNTg0NTA2MTEiLCJwdWlkIjoiMTAwMzIwMDIwNjJENTYxMCIsInJoIjoiMC5BUm9BdjRqNWN2R0dyMEdScXkxODBCSGJSMFpJZjNrQXV0ZFB1a1Bhd2ZqMk1CTWFBQWMuIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiVWhsVGZTcVRDUkZVMi1NV2QzY0QzclEzZnZGSWRqUzk1SklWQlZjSTB3ayIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoic25laGFwYXJAbWljcm9zb2Z0LmNvbSIsInVwbiI6InNuZWhhcGFyQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJ1UWtvWHVkMFNVNkQwZDR1SlRJM0FBIiwidmVyIjoiMS4wIiwid2lkcyI6WyJiNzlmYmY0ZC0zZWY5LTQ2ODktODE0My03NmIxOTRlODU1MDkiXSwieG1zX2NjIjpbIkNQMSJdLCJ4bXNfdGNkdCI6MTI4OTI0MTU0N30.Dhn-xqaoWf8TIxzdgr6NjQ-VGlb9T4Maoiz7wIgDLq2gyCSp0YFZ4u0LbZhB0_rqMBMUFC3F6x3ciLLV2pxeyB7Q7cYCrTx37FpVv6snuvUROAkknriQlwvPPPxX2c6AWRTBy8bQ41Q3DMXTJRcMJK-INWuDMUPugoj3f_mugjNqYeEp804VYqTyrQ0oD8ZM1sw3QeP4Q6ZNz_YP9ZKhP0JO2Y5HKB_of_ePROzNHgiFYCnLjOm_hR9JzrkGJK9NvJFoVRAAd9VPYKl-KMnPGigIUk6l7PwiMnnrjGoM94qkhvzNRvyG_0myYvbuN3mQ8v2SbRkML9u0ZSnCczPcCQ - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2316' - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - python-requests/2.26.0 - method: POST - uri: https://containerapp000004.azurecr.io/oauth2/exchange - response: - body: - string: '{"refresh_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkNPQVU6UERZSDo0SVJYOjM2SEI6TFYzUDpWNFBGOko0NzQ6SzNOSjpPS1JCOlRZQUo6NEc0Szo1Q1NEIn0.eyJqdGkiOiIzMzVjMDA3OC0xNGJkLTRkOWMtYTEzYS1kNDI2ZDlkMTI2NTkiLCJzdWIiOiJzbmVoYXBhckBtaWNyb3NvZnQuY29tIiwibmJmIjoxNjkwMzQ3OTA3LCJleHAiOjE2OTAzNTk2MDcsImlhdCI6MTY5MDM0NzkwNywiaXNzIjoiQXp1cmUgQ29udGFpbmVyIFJlZ2lzdHJ5IiwiYXVkIjoiY29udGFpbmVyYXBwNm1mcmVmczY0eDNtLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiNWY1YWU2OGJiNjU5NGFmNzhjNWQ2N2I2ZWU2MmQxOTAiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwidGVuYW50IjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwicGVybWlzc2lvbnMiOnsiQWN0aW9ucyI6WyJyZWFkIiwid3JpdGUiLCJkZWxldGUiLCJkZWxldGVkL3JlYWQiLCJkZWxldGVkL3Jlc3RvcmUvYWN0aW9uIl0sIk5vdEFjdGlvbnMiOm51bGx9LCJyb2xlcyI6W119.VZ4PjopNWPWJZ57R_IiL1ZEHvplSbDjaZDh5J2nAbLt0G6Ovx4Ec7UAhzN8pUQ5nlucKGyWpwPcvSS1N9db2BmbvLudSmKxrMuHSb1rqN2lDDh9c0pMvMV_9xU3AokZ8Sw9HAIy6sbdAyKY1TWrlVTNij7n31pmdgblFf7UgdEWOZ-VfytdjUG7B-h3Myf411_SM1_nAQP93OfRIIVm7IsUby8mbndeiuKpOP-oSQZFf3yxRA52WyzOhMjE1AzXGxXdHTz7pkrSjKpxaFf0fEfio_GKqFLk5mANEdlMjEZgPBKOB6Cd-LTx4K6e7EjuXl9LNoKmeaxrsskNnRccAZA"}' - headers: - connection: - - keep-alive - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:07 GMT - server: - - openresty - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - status: - code: 200 - message: OK -- request: - body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", - "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "qbWyw0+mnDJlbg8i+4TxtIQ5uSpQVpzr9RVsarwMTd+ACRBLPLmY"}], "activeRevisionsMode": - "single", "ingress": {"fqdn": null, "external": true, "targetPort": 8080, "transport": - "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": - null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", - "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], - "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": - "containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230725221946750509", - "name": "containerapp000003", "command": null, "args": null, "env": null, "resources": - null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": - null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - Content-Length: - - '1266' - Content-Type: - - application/json - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:21.2537164Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:21.2537164Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.31.57.78"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230725221946750509","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d?api-version=2023-04-01-preview&azureAsyncOperation=true - cache-control: - - no-cache - content-length: - - '2441' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-ratelimit-remaining-subscription-resource-requests: - - '699' - x-msedge-ref: - - 'Ref A: 02034AFE163A4926BD3D4E08ED1BA550 Ref B: CO6AA3150218029 Ref C: 2023-07-26T05:20:20Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","name":"9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","status":"InProgress","startTime":"2023-07-26T05:20:22.0813448"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C23EDFB52A9D4C70ACDC7EE3AD57B860 Ref B: CO6AA3150217047 Ref C: 2023-07-26T05:20:24Z' - 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 --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","name":"9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","status":"InProgress","startTime":"2023-07-26T05:20:22.0813448"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8B51253F87854BCFB7313D46A99BEAA3 Ref B: CO6AA3150217029 Ref C: 2023-07-26T05:20:27Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","name":"9b08498c-4bb2-4e3d-9992-e40ba3f32e9d","status":"Succeeded","startTime":"2023-07-26T05:20:22.0813448"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '281' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 84BA8BC4FA0C47D197A0B04295783F43 Ref B: CO6AA3150219019 Ref C: 2023-07-26T05:20:30Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - --source --source --ingress --target-port - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:21.2537164","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:21.2537164"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.31.57.78"],"latestRevisionName":"containerapp000003--c68jiee","latestReadyRevisionName":"containerapp000003--c68jiee","latestRevisionFqdn":"containerapp000003--c68jiee.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230725221946750509","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '2572' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C8C7553284864BD4A6BC303282143643 Ref B: CO6AA3150217011 Ref C: 2023-07-26T05:20:31Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North - Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '11739' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A018DD4FCB344094AAA0D11A2A981C69 Ref B: CO6AA3150220009 Ref C: 2023-07-26T05:20:32Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West - Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T05:20:21.2537164","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T05:20:21.2537164"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.31.57.78"],"latestRevisionName":"containerapp000003--c68jiee","latestReadyRevisionName":"containerapp000003--c68jiee","latestRevisionFqdn":"containerapp000003--c68jiee.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.proudocean-e7b2bacc.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230725221946750509","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '2572' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 05:20:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 299218EBCA6242D2988CE4861A468BC9 Ref B: CO6AA3150219053 Ref C: 2023-07-26T05:20:32Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -version: 1 From 557f05e574f0dd428f5463142b873cbfeab18687 Mon Sep 17 00:00:00 2001 From: snehapar9 Date: Wed, 26 Jul 2023 13:07:44 -0700 Subject: [PATCH 15/15] Add live_only to tests --- ...tainerapp_create_source_and_image_e2e.yaml | 6778 +++++++++ ...app_create_source_with_Dockerfile_e2e.yaml | 6812 +++++++++ ...erapp_create_source_with_acr_task_e2e.yaml | 12644 ++++++++++++++++ ...rapp_create_source_with_buildpack_e2e.yaml | 3932 +++++ .../tests/latest/test_containerapp_create.py | 3 + 5 files changed, 30169 insertions(+) create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml new file mode 100644 index 00000000000..7418156aec9 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_and_image_e2e.yaml @@ -0,0 +1,6778 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgtfu236h5uocpfn2rarrdf?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"9099541d-e10c-4f88-a9af-833fd2ee2153","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T20:02:07.9490057Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T09:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T20:02:07.9490057Z","modifiedDate":"2023-07-26T20:02:07.9490057Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgtfu236h5uocpfn2rarrdf","name":"workspace-clitestrgtfu236h5uocpfn2rarrdf","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgtfu236h5uocpfn2rarrdf?api-version=2021-12-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgtfu236h5uocpfn2rarrdf?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"9099541d-e10c-4f88-a9af-833fd2ee2153","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T20:02:07.9490057Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T09:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T20:02:07.9490057Z","modifiedDate":"2023-07-26T20:02:07.9490057Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgtfu236h5uocpfn2rarrdf","name":"workspace-clitestrgtfu236h5uocpfn2rarrdf","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgtfu236h5uocpfn2rarrdf/sharedKeys?api-version=2020-08-01 + response: + body: + string: '{"primarySharedKey":"c7WoVKJIPx8pacwV272ga9EXo1R1Bdygs2qMPCnntxLoL975H/4ivKxcB65fXY7LjQLLQeHnphjwCupezhLTbg==","secondarySharedKey":"DrDYLE/QuBGyNhkLvB0gnTJUQqcT4gyv1eQjKIEexG09qgZMM1a+IHjRnHCqn2CWfgFampPYEwrKA0iyYUf1bg=="}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + cache-control: + - no-cache + content-length: + - '223' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 629A742B3C15452993E7B17577DB46CD Ref B: CO6AA3150218031 Ref C: 2023-07-26T20:02:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "9099541d-e10c-4f88-a9af-833fd2ee2153", + "sharedKey": "c7WoVKJIPx8pacwV272ga9EXo1R1Bdygs2qMPCnntxLoL975H/4ivKxcB65fXY7LjQLLQeHnphjwCupezhLTbg=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '450' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.5942841Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.5942841Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politeflower-c055fd89.westeurope.azurecontainerapps.io","staticIp":"20.160.244.38","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"9099541d-e10c-4f88-a9af-833fd2ee2153","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1541' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-msedge-ref: + - 'Ref A: 3FFFB979467E44788E5FE6471EA9E92E Ref B: CO6AA3150220037 Ref C: 2023-07-26T20:02:09Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 731C703C8FE64003A16FBDC840DE978D Ref B: CO6AA3150218029 Ref C: 2023-07-26T20:02:17Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 07919779827349E883EBF8C74C3CDC8C Ref B: CO6AA3150219039 Ref C: 2023-07-26T20:02:20Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 59B4F68A4886420197524387D7707EBD Ref B: CO6AA3150220039 Ref C: 2023-07-26T20:02:23Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B4E09EC8F2A6497CA0825A12DAF7DE62 Ref B: CO6AA3150218017 Ref C: 2023-07-26T20:02:26Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 702DBFC07B7A4C56A883B57CF6D511BC Ref B: CO6AA3150217051 Ref C: 2023-07-26T20:02:29Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B4C3F334C86F46E391599948D5D0B0EE Ref B: CO6AA3150219021 Ref C: 2023-07-26T20:02:32Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 484FAB9FE4AF4C638145F1DE5FA0F295 Ref B: CO6AA3150220035 Ref C: 2023-07-26T20:02:35Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 3B6CEBEA80D74858805C6FFBA1CBB69F Ref B: CO6AA3150219047 Ref C: 2023-07-26T20:02:37Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6E187C0E2AE44C019C16399764DD829C Ref B: CO6AA3150217025 Ref C: 2023-07-26T20:02:40Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: EC7D8652B24E4E5697823F99D4E61A21 Ref B: CO6AA3150220017 Ref C: 2023-07-26T20:02:43Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: C86A396F878E4E6A9E0FA4716CEAB815 Ref B: CO6AA3150220027 Ref C: 2023-07-26T20:02:46Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 5FB23E0A66DA47C8B39C37AE254D3619 Ref B: CO6AA3150217023 Ref C: 2023-07-26T20:02:49Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: C190DE00B0D54842AF61AB00CB057EB6 Ref B: CO6AA3150220011 Ref C: 2023-07-26T20:02:52Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E711F5F3497B40329A7047239EB1CEAC Ref B: CO6AA3150217023 Ref C: 2023-07-26T20:02:55Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E46C4331FA364E05A09F34A9B4BE0D07 Ref B: CO6AA3150219031 Ref C: 2023-07-26T20:02:58Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"InProgress","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: CE6BB7554E924943A48CC2D7A00A767A Ref B: CO6AA3150217039 Ref C: 2023-07-26T20:03:00Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/7f6c706d-2033-4cf9-ae82-fc530aa9f562","name":"7f6c706d-2033-4cf9-ae82-fc530aa9f562","status":"Succeeded","startTime":"2023-07-26T20:02:17.0439454"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: AC05049463F449049E06B10206FDF7C0 Ref B: CO6AA3150217045 Ref C: 2023-07-26T20:03:03Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.5942841","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.5942841"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politeflower-c055fd89.westeurope.azurecontainerapps.io","staticIp":"20.160.244.38","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"9099541d-e10c-4f88-a9af-833fd2ee2153","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1541' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0BCFD3BFA5FE4E59832D55AF259955FC Ref B: CO6AA3150220051 Ref C: 2023-07-26T20:03:03Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true, "anonymousPullEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:05.4032082Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.7733577+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.7733577+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6f8c0f97-2bef-11ee-9998-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1380' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: BCD86065592F4AC59DB1E77F9F639511 Ref B: CO6AA3150218035 Ref C: 2023-07-26T20:03:04Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6f8c0f97-2bef-11ee-9998-bce92fa43675?api-version=2022-02-01-preview + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6f8c0f97-2bef-11ee-9998-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: EAA0F09E7A5E4AFDA6B776FA9ED71E84 Ref B: CO6AA3150218035 Ref C: 2023-07-26T20:03:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:05.4032082Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.7733577+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.7733577+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 4AEC78A7556C4C74B47703007516F184 Ref B: CO6AA3150218035 Ref C: 2023-07-26T20:03:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:05.4032082Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.7733577+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.7733577+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview + response: + body: + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"j03g7dv6Y+QWR+wtL3toAHovSx+1t4cbfYFjstzqqw+ACRDy4aIG"},{"name":"password2","value":"CyjcSH2aJtGy/fQXOUkktyZu5MlkhrbC+n/5pVulkN+ACRAo03BI"}]}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '214' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.5942841","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.5942841"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politeflower-c055fd89.westeurope.azurecontainerapps.io","staticIp":"20.160.244.38","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"9099541d-e10c-4f88-a9af-833fd2ee2153","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1541' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.5942841","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.5942841"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politeflower-c055fd89.westeurope.azurecontainerapps.io","staticIp":"20.160.244.38","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"9099541d-e10c-4f88-a9af-833fd2ee2153","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1541' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 20:03:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.5942841","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.5942841"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"politeflower-c055fd89.westeurope.azurecontainerapps.io","staticIp":"20.160.244.38","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"9099541d-e10c-4f88-a9af-833fd2ee2153","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1541' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03: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 + 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 --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '234' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ojxkb2kfwx4jux6ao4y3tbamxrer6jnnfpvr3tuggpiizds2xdojcb6rrqfhkldg/providers/Microsoft.ContainerRegistry/registries/containerapp4sm3kmfpl4gh","name":"containerapp4sm3kmfpl4gh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmv2zz2idqv22c2k6tv4jnv5fpi2vggwuegd4ld6pzho5oo7zprlfkdtgh7aq7ok46/providers/Microsoft.ContainerRegistry/registries/containerappscixnekzodz7","name":"containerappscixnekzodz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5o46kqig5lbslefzxqlx7zi4bvn2dllfwaoj5ikp4ny2uy73ssekdcawdp6rhw3mq/providers/Microsoft.ContainerRegistry/registries/containerappseirdstg4xa4","name":"containerappseirdstg4xa4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6518' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:05.4032082Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.7733577+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.7733577+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - '2022-12-01' + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 20:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview + response: + body: + string: '{"uploadUrl":"https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/source/202307260000/ca1b9126-460c-43a7-9eea-453c7bd24fca.tar.gz?sv=2021-12-02&se=2023-07-26T21%3A03%3A20Z&sr=b&sp=cw&sig=%2FN2eYGW4MWy0lrlEZ42astxvEa6Ob9ZoPBSDtebbB9Y%3D","relativePath":"source/202307260000/ca1b9126-460c-43a7-9eea-453c7bd24fca.tar.gz"}' + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: !!binary | + H4sICAl8wWQC/2J1aWxkX2FyY2hpdmVfODhmOTdiM2IyOWUzNGEwY2FkNTIwMDIxM2E1YWE3ZWMu + dGFyAO09+XcUx5lkN/sL+3jPf0Jl/DYRfsypC4QkIwMOSji0kmzH6zhOz0xJaujpHnf3SMg8x3mb + 9e7b4yWbjZOXfV7HSWxsMBa2wdxgjG9zHxICJBBIQhh0IZBAHHLtV1XdMz2HBDgwJqY++2Na3VXf + 99X1HdXVVR6vxzurQlo6D0thrE+6I+DjMN6vz5ebm7im9/3+vHz/JLR0UhYgZpiSDuxvdyH/SiBQ + iCKmHMEl/oLpBb4Z+dNnBDyFhXnTC/InTxLwzQdvFnjQ8VBYWDj++E+7LgwU+iahfDH+7zh4hP4X + +l/o/3sWpGjUwKYpq7WGZw6ux4oWjWDV9Cw2NPV2jv+CgoJxx38gN5Ay/vMKA7mTkE+M/zsOy6ZM + Rsg1B5uSrODwXF3XdMNVhEw9hqexR/O12lroHXCPJeV35tOekrjFKNRIMcWEe65ytUbTI5Ipa6pr + WjzBAjmka4ZWY3rKjOhCbM7WdExTPybpKqXPEz5Lf+Af+F+MTWH/xfgX9l9Atuz/7bT5t2T/A4Up + 4z+Ql1cg7H/27P/XYeS5e1GmKFoDDs/TDJP6Ha4HXML4C/sv7L+w/wKyARVSLTbu8CTwLc//+n2B + fDH/K/S/aH+h/wVkQf+zeT9PyKgzI0rW4z9/fkHq/G8gv8Av4r9swOCW7bOi0AemTJ4V0cJYQawr + LKCXcMsK/R6VccMcyZSecFXLpoJdT6IS5GIJXTNZuDZlcnGdH4UUyTBKXCZearrDklqLdVcp71nF + 3jp/KU0UyJioTEWYpkNaKBTTdRxGDXWyglFU10LYMCByRI1aTEc6fjqGDZOSC5RSrrPkGpTDhPVU + 1WkNlfx5eXjqlMmW6MXRUjs6hT8MU9fU2lIrHSqfU1Tste6h4hDQKZ3FqcUpFXvZbYuYl1Kzyptb + 6nhfgmg2ECuXltJmWdUgRaNUeFNDZh2Os3fkS7DHar0MV4xYWDaiitRooLA1L4/kRLiNpKAWMxlB + XmlmnWTGa84D/JmUcSlsrtWQwSmxk6FRp8WUsPo9EwWBqioFKU/gCAJEFa0R/oCSKHKICWB44lJz + DuUmCkkqtI4RU0wQ1ZafFt3AqiGbcj1OKkKNrkUQXhrCUUaQVhBWwyhmYN3wcKIPA3dFC0kKyBCM + semJaZZot1aZwUZkzXAl5Surqlg4t3r2osq5T81d+Gh55aKFC+YurM5Mol7SZc5Ym5Avl1yCkkBd + gFqJM4XaizeM8P+E/yf8PwF3q/8HP1n2/3LzUsd/rh9cQuH/ZaX41EZlmrf3LKgPgXc3cQJPpfSM + prNOFE9b1WiYOOKZI0u1qmaYcog+mjJZlSLYiEohjKrBOD6Gg2XRaMAXyPXle1j+uMv2RCWkA68A + z5ZCdThnTkznTkMJ8k1D87WQ/VdSMvu+Z6Gm4mlooVZlgoiQiq5kmPqkRbkcJNJxmWrK4IuA69lY + rS3BqvU0GguCi8MdVIcbjIoQlc9yiWnCZQmP0soD9h9K/iCKu41oGarF5kzqecxEzGFMyRHUNAUl + +ayopBR9hxPylBsLY4qySJ8biZqNOQm3dmYSJV2ul0wMvoYU1lSlEZXT1zhYL07IXoqeUti9mRlE + SCTLyZSTZ5yayOYoNgWLMlRxnIX9KFOB6zU5jBap38dmzvg0HZWBykLgNspmo2c2dWxV80EP3H7w + QTTPNKOzNZUGEJ5qHfpTeRjTBpVTRbB+nhVKXvh/Qv8L/0/AuP5fuRrGS7+u+T9fnt+fNv8XKBT+ + 39cy/8e6ws3M/83TIhjRrIk5wLBcnzS/FwLDTOf3rImoxBShNUHkznOVPoaVEFCyZgitKbv5WNLt + ia5iCdXpuKbEVQeG3yjyesNayPBE4g4p5PZKRlTFpjdEl5uUBmOyEqaOKPiYdObFQA2yWYfKqio8 + C+dWI+q6FnulUo81T+YFqUvv2RUnwv4L+y/sv7D/Cfuf9fkfX4E/ff4nV9j/bNn/2zoFdAvzPEnz + LQm3Y+L5lvHmPBL5J5zzSCTLyZQzW3Med888hbD/wv4L+3+v2/8KqlZDjXdoBuCG33/k56XZf594 + //P1xP9WV7iZGQArKarQwNg1WtMAEOWXzkpLboX3bFnKIwZdwSEbbPKALqngq1z4Eh9DNvH3DG7n + gXSUkfbcjSsnRPwv7L+w/wK+efb/ds8A3DD+D6TO/+fm+/KE/b+X4n+n2/HVZgCcFCacA3AmzMmc + O9trH76+WQBh/4X9F/b/Xrf/VXWSjsN36jPQW//+E8Z/gfj+U+h/0f5C/wvImv5/ar7UqMXM2z0N + fIP4Ly/PV5C6/1+uX8z/Ziv+K/7OnEWzqx+vmItoq7PPNOEXKZJaW+LCqovdAfNgL8+KYFNCIegx + BjZLXDGzxj3dhbxJT2kMWOKql3FDVNNNFwrR9doqpG6Qw2ZdSRjXyyHsZn9MQ7Iqm7KkuI2QpIAe + 8vgc1Ew6fZxhPhm506LLYi9PbOVUZHUJBIlKicswGxVs1GEMgvCVZD/zKnLQG9Q00zB1KeoNy4bp + DRlG4pYnIqswDAyHKBMTpLnp3DXPJBlRtxSNYjXsrse6IWtqiYt+iHDT5NJCZ57oZqgXe63GKg5q + 4cb42jtm353fwqpSfLEeXAYlHfEfN14alYC0EbFvmBDjKph+AOm4qci1dSYK1rob6qDYKKjpQN8d + 1ExTi8BfS91GHQToDSgSdOe6SpPDZ+dCQdo1JFlNLBNMSigli+gO6iCaVQM6lkpc/Jq+SShx8WUs + rtL0niFloh2MgaxqCgNeVt2FzMYokORpXCgMnc8dNKzHVGpFkaIGdjyR9Fo6HjwWoUQK+vGomxZT + 15Q4o6pYlA4NHJ7Nh4YrXUAbWH7eKDhc4qqRlDhVRQrSHlTNpKItI9fyLblKM5MrNoBK5hK75RDN + V+ylSTJVl5fXRaZHjuZMKT2KX9AO5ZZV6PbYXaPgpWgxaF65ptFt6QZ3EJsNGI8vekxJ4UE7MKXk + rtW1Brd/vIzWaHNkdkOHjUyUPK3rudlotb5Z15fcqAPOYwtapYkEAg10F8hrzXq5Sq2Lryx0sTem + ZOw0fHHtRPeKvSBw/AP7JD11Qz1RHIFbCMYVFIZeuuzU0QxaZ1YlaEysPwRa0TkNV+ylOeMCcOGs + v2rAHmDdJmrpOFOLIusBq+FIDIZxklQ3o96+G9KijTMR1VAZjBncggb9Sq3mrN9iLxc0USIjpMtR + Exl6yDaDi5+OYb2R20B+zYzfYoMpA5a8dNzMKTZ0sdOEBmNqWME3SWyxZT4XT2TfnDQ4lVlSgySb + iLdsFQ5R5VdmNKqhHFcVS2m4prFtI2Twb4sQ051TqY20bCN0OOrz3Lv+v4j/Rfwv4n8R/2eI/2mw + kY3431+Qm7r+K9/vE/s/ZSv+9z6AKiC8Ax/dwOCna6EY3dTG2mvIRDf32ZU3pMjUizfkMPYyyy+r + tW4aR4L9l2usrYOmTOabCtH1XgaiwZem1si1MZ1vlEPXhOnaYjDjdFkY9x/YdjqMRiMyqFQh1EC/ + 6zIMbBoe9ICXugKSxxkf8jerLC51szfRRUilWw8p7DUt89kkCF/VIsQ/UGO3G8C5g+xYWlKE2A+k + Uewv2yROEoIZTS9C99PXGaGQ/dATNFV3VJcjkt6YnK6mpobRDkqhJRCkQHnc9iN/sACHAvwpdyvj + T6YX+KUEcerNR2UFqstjO/YeiX4aj6ch50OjDoLt0kSi2y+Jw/1d5kgNfxchf3QpMjRFDqP7cT79 + j+fyJE8LOLPxW+PmZHnjkwhWRvvvIuRDnkC+jiPIU8h+9NqglOObhvj/Hl/+VJsMj1qhyuhmU26+ + npDTq9FYf30GuocfaLAaYOFpHaZzG0VIVuuwLptxgSynn2WOanRbKw36kBQE8SEEsGqQl8rH+xSd + 4ALqPt8/zMzQJRvAS07nWuCLLp2ZtU2whf8n/D/h/wn/j/t/j4JdDDNLbUXPFXQTO0n5y94I3XD9 + f0HK+/8AzSD8v2y9/xlvTshdH+8OSdND1u2MUzs3Q8wdU7WgqccMcGLSaDqeZaIvRqyw/2L8C/sv + 4Hba/6foC/byCH0jadz+jwBvZP/9Bfmp6z/8/nxh/7Nk/2fx9f2pr6CmTJ5146X8s6RwuFqqnYeV + KETGD0wb/yuBeCpDGHFh/4X9F/ZfwN1l/6vojvV3YguAG9l/X/r+z/n0/Cdh/7Nj/60P0fjLP/ph + v/Ue0DVTnMUo7L+w/8L+C/jG2n9dq9WlyO3f9O/m7b/fV5ga/0P4L77/yArUSzpiG+ayr9l5iG8f + 9OSZrWPJxA/xxzmSXmvwEwi8XlQWDiMD6/Q7DsM+3yq+1tVDX7uzTJ4qK40HMiQ2CsjhdChzKRoF + xnZyxisnzmW2tTyEH/k0r7q6wj4DDEXlKKbvzYEXPQTsO/SIpbmJM5s85YbjhKacqYkTwWjCRww8 + 1z59ap5El5noOS5+CoprqvUxP7CnR2aF+ZnXaF5VdRWql5QYRrKBcn0oLDUaHvS4FkMRqRE1SCpb + tBKqo2ea8bUsdK1LVNfCMbYsFRkhrEq6rBnT2EIbe12NtETyRAxrLQ1dSuOuM0z7FCxL2HlwJye+ + pMG+SQlU4rCs83WvLIH1rIqtlHlYVuJ1bT2oBL9OVmuTb5bFzDpNl5+R4mT4owVSNK3N6P3KGE8l + 1Kfw/4T/J/w/AX/N/l8U66Z8Jw8B/wr7P+Tm5Yv9H4T+F+0v9L+ALOl/RYqpoboqflau4VlsaGp2 + 4v+CQOr4zw/kivf/WQEWFLsgSq2hsaKryN6VzpX6xj/xCB6GtEgEwuaFUgTDfVcF/2jDNS2egPel + h3StwcA6JKGfbyaeOs5WftQ6Wtlw0ockmY9npswcYX38o/lnE7TDmglxNESoC7Bh0Lg1jbvjKOtH + dIWStENxdt50nWaYRYWgCmfS20l388EwWTxtjq7y8io0d2lUB24TVREks1N9fbWUIvocLbSE8R1X + aivFzUrMn1qVuqwqVIcj+FmowWXWLNA8qMRni+y/KjTdfNZBm22WaNSVKQp9kt5uMQNXVc23bsc3 + TLTL45Jlw9Zdjm7cIKthEJbOcNBTInmzu6wvge2KkFRNbYxosfRkDgkog0wNnbk7JfWbPN+M3AJH + SQ2DFRHS5uXl5vucZcn2DpDC/xP+n/D/7l1IW9gXMugnmLd9/E/4/ifXl3b+g1+c/5QVKLZ8N1QV + XlLiSqzeBLfCA7c80Ddc1m4bxVas0Ph9XYtF7W08qtm+Rw/r4DE0aPqSUnC+Cjy+Ym/qfSs5Pdea + ejKlWKU/xd74DStBeYSaU9l8hC5KNeLJUm5biR8x2K4fOjaN8nBpfl5B2J8fDriD06fPcOeFggH3 + dCkww50f9IWwVIgDBdKMYm9yHosQd3Tm8Hc9XPRFVaXzZTW2tNib+WFSTuo9W4dS04Ml02+yCvSm + 1iC7W27iSFKVVkihJeC5VuIarGM1hFG5GlJiYexsn0dlIyYpVWYsLGuesmdiOvbMtl+/GZ5qTVPg + Xyaq4UKP2ruo+D3+Qk/A3oUMatXBmm6GYnUG8Z3NPQPC/xP+n/D/7l1oaGjQNc303kket/7+x1eY + 5xfvf4T+F+0v9L+AbOh/un/x3aP//fm5Qv8L/S/aX+h/AVnT//b+9Xdi/E/0/V+uL5A6/xsQ5/9m + B9hRD2nb4eXZW9DRY4FxWJZQTkRW3dZ+doUF06NLp/JcifzJFAoYBf5Ck5JJpEvsnKdjRaIbGbKE + lL69BZ61YR7fv08LW/v1RSS9FhLZW+zZ++SJMSzsvxj/wv4L+Evsf41UTw8A8cA/d2T8j2///YG8 + gtTzn3J9hbnC/mcHvjXpbyYhRH/RpBX3TZr0Xbh3333877pvT5q0F65z4B4kmTRrEr9P4ef3ZST3 + d4B/f6uYk5Mz9a3VTVveamratLrpTY5vvrFp9aqVm5reWLGpaeXrm5pWvL7prZWvb1hNccVrgMsd + +NqGf/n5c//ZduwoOXq4hRxh2MyxxcZDHJsPkVaGB+O4bfMmcrqrk2F35ynSfeok6Tp5gnSdOE46 + j7cBHiOdbUdJ57Ej5NSxVnLq6GHAliR8Y/kr23u6u8jY6CVyneEIuX6Z4jC5dglw5CLgBYZXh4cA + z3O8OEiONR8gX16/RsauXSVjV6+QsSujnMZlK98w5LkIaS8MAg6QK0P9abhl3VrG//qVy2Socw/p + 2flH0rPrT+T0zj+Q05//gZzYv4W0Hz2SXD9W3by3dTPj/yXlfw34X7X5j4DsltxU5iQZEnJchest + 6xP8e3b9mez9/Wyy78Xvkz3/Wwb4ENn37n+wuhmz62Y0UTdtrS2cv6MOBnrPkoFzX5CBs2dI/xc9 + pP9MN+nv6SZ9p7vI6RPtcTn47yDwfxf4d0PdXSFndi8n+1/8ATnwcgU59OqPGB7Y/AKTjaOzjYZJ + +xHK/3oS/8Hec2Rk6DyTYfh8P8hwOiFDTxevCwdu2bBue8/pbpb3zJ7lUPZy0vzaj8mBPywk+1/6 + Idm//pcO/rYMvB4Y/7HrVhtwGQb7esnIBc5/5PwA6T/bY8nA5aDt4cStG9dz/tB+X+x9nRx4aT5p + ef0nnP//zWf8ad1wHCXDg31Ql6dIb/dJsvezjyz+iTq4dPECyHAu0Q7OtgDk/TmBWzdu2N7Tc5qM + Xb9Kvti3gvFtWfFT1gb7X1pA9m/4Fe/bFg4P9gP/TtILMuz7/GPgP5aog9SxQOvL6o/2mLp+yYHw + 97ZNGy3+14D/Sij/AnLYyX/9r3jfvmbxhzbt6+lkdbD380/I5UuXLBwhl0eGyeXhi+QSRaiHSxeH + yKULQ6w9RoYGM+Lad97m/MeukbMHVpFDf3qEtK6qIYf+/Cg5+McqcmDj/7C6YQhlG4Zx03emk8mw + D/ifPz9Izg9SHOA40E/O9/eTwf4+jtAfOJ5jfXPAgfTvd9e8s/1MTw+rx7MH3iQHX/5H0royRA4B + 74NQBwc2/jerG46U/0AS/6NHQDccaSVHWm08bOkJwJYW0hrH5oy4/JVX4vzPHVxNWl55nBxtWkxa + lv8TaX7lR+QgjD9aNwxBhmGos74zXUyGfTs/Iadh7O7ds4ccsWRw9kfnuBiz+4alq2g9dZ06RZpW + rdp+5kwPgYykl/L/82Pk6JsyaXn1cdIM1wc3vWD1Md7PhqE9+2AcUdy781PG38buOHZx7HIgvd/V + lYarm5qA/xny5Zdfkt5Db5PDr/6YHFsdIa2v/QRkeIIc3PI7B/8x6EvAH8ZzH4znvTs/I6dPn07D + NWvWkAMHDiThmqY3SPO+3UxntrU2kzbQ47/5zW9e9Hg89yf4v0MOv/IEOda0hMlB2+LQ5t+yuqGY + 4N/DZGg9dADqfjfDXSDLrs85bt64IX696/NPya7PPiV7Pv2QXOw/y22aZRvWrVv3b9T2U/4U+lvW + kqOvB0n72zr8hsiR135Kmrf8nsnGMIk/l2EYxhZF3iZd8b5JdYStJ6iu6u3uAP7nEnYVcMOGDUn8 + +5rXkNZXf0LaVmvkyPKfwvWTUP7fJfgDjlx08u9h8ow4+kSSDHE5TjE5hgd6k+zXpk2bUsq/jhxb + gcmJNQ3kxLuN7PfIRytIAr4E3XKB6fQ0/qxPTCzD8GBvkg3dsnVLMv/md8nR1yRy/C2d/R5Z/hRp + 3vz7JP4jFy+SPsr/bCp/3h59X3Qn5AB7Z+tKzr8vyY5u27YtpfzrSdvKWlbutjdkcgyuW7b9H3EC + 1a1953p4HQDS9ki0CR8XUP4xkGOM1YPFv7eb8b8G/K8AXgP+19577730+n89TE68EwPeNey6ZeuL + afxt3oz/MOfff+5MGnJ5QJYezv9iSv2///72JP4DLRtI2wq7/ItZXWQqP6N9luMI9AeKGfmfozLS + NmH1wXS3Xf+j0P927NiRzP8w8F8pk441jaR91RLWBi3bXiK3C8ZAL18DGzo6OkouXLhAPvjggwzl + 5/yPv6mCDKAHP1iesfw3g7R9eqENzkI/PAf98QLYjivgx1yEPtzb20s+/PBDyv9vE+XfSNrfUMiJ + 1TqT4eS6n5G2Xeu+En/Km/Kk2HXyODkJscBZsDP9YJu7QO/v27ePHDt27Dkg+S1n/bdD+Y+vUkg7 + tEP7ysVp9X8z/GmZbd4UP3h/O4G+TrZv3042b97Mrtva2rZT3k7+l3rbWRvQeqCy0N+OQx/dOv8z + nD/9pfj+e9uY7rx8+TI51dlJOjs747yd/DPBRM/Gg+vQz2y8evUq+fjjj8kl8NFOnjyZxpsi3CMD + AwMZsaOj49b7OdgpipT3yMgI7WeUL7XNabxvhPv373/uVvnTur4Gfg/lTfvbzp07qf9xy7wpNjc3 + PzcI/uV49ZMJKc9z586RHvDrToGP1d7ePiHvr3sug85T3GfNVdjzFLO+nZ6u+eCBX+zbs/v5fbt3 + Wbjz+b27KH7+/PZtWzft3b3r+J6dnx/f/dknx3d98tHx3R9/2Lbr4x1tuz7a0bb+7dU7hgb6yPCZ + w2To1E4ycGo/OQcx4VmIS892Q9/oPMl8U6qfqW/AYn2IT+1YuaO1uWMI6rZtbQziEojLVqlJsWgf + xFk0P7VFgzT2ovYB6A/BeKR0Oo4e7hiCeLB93VJyEGKL/SsjwGuUXAVe1C85C2mpvzwKMcz5/l5G + g8Zr9Bn11U62He0YAv3Zvn4ZOQR++f43VBYPjUIMR32b7lMd5CqlN3qZXIFY6ArQGQW7xBBkOn60 + tePC0BA5sfE58O0hvn3zaRZPUDtEbfQxiBeYTwzjpBv6TBebS+mII/iSHRfAzzi5+RekdYVEDq2O + wRi7Tq5cvsT8naPg17a3tTF9MQQx0dAgRxoT9YOu371rVwe1Oae2/Cs5sjJMmt9ayvzJK6CTqM9w + uPmgFcccJh/seJ/5tJ9+uIOc6ewgvWA/XvjtC1XUbnRu+3dybBXYxbeXsXF2BcpLfQ9aZ+chxrJ9 + DtvvHIW6p+25du3auTR/13v/RdrfepocWfc8G6u0zqitYPkB4/6b5beMQj+gbbx+w3qWv/u9X5L2 + Jo20rvm5lf8Kyz8E7UT7l+UHMd+nl+cfg34ytnnzJp5/+6/I8dXAf+0/x3XlCOj0UWizUYiRL1nx + K/MroN2ujl5iz7Zu3cryn97+a3LirRhp3/LrOP/xbN9pqDsam9LYZ/fu3bOZ3d3XRE6//2vS8dGf + xs1v2619+/YS0D/k4MGDL1M9QfUK1eMU6fVE+p/a+SMQm4LefTmTzgGaZTatVBweHmb6q7W19eW7 + SU+J93/i/Z94/yfg7nn/t/gu2/8pX+z/JPS/aH+h/wVkS/+z5Z+LjTsz/idc/5mXuv4jUFAg1n9m + Bej5394snv8NzG7zEeDWVtGP6dB9UaMW09EPpHqJn18KxMN0h2gxzoX9F+Nf2H8BqZA3Y0a+P396 + IBfn+fIKcoNSKLcwLE3P80lB33T456nEViZ3yv5DsOdP3f8xr0Ds/5gVuL8q/SiCENSJFpGfwfED + HagtBhdBV1Gd1sCOObCTcIsbxsFYbeL8B2awaUq+Sw3i29SgmEHPiqAmPtGpuJWXlTAnJEfolo3M + RaiRDBNbpGvBOWCG/uHKRQtQJKSnOCJ800fLHykq8PhQWRUKgkszZfJjiyp/OKe8EnmlaHTK5Lk/ + qlhUNRdN98Uv8/Jyb0zYCC+JU6XCOsgaemjK5NmLKh5HT7jG2UzLNQ25PK4np0yufGQh4hSRDknB + bYIH3vFyWWQ9yJNg56L8vB5XEi1ef+NyR+4QqsTcw3NrrCK8VimscnMCUDhrC8Yk6ta9W6NvZ/JG + i+j5EtEo3fqxhG26mOBKMwDTGlmVlNSGYkV3u2t0LVISJ+akDJUyd2F15eMVi8oXVkPdc2lpVafJ + GVYU15NC1QsQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIOAbBv8PpQjnfgAY + AQA= + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '7469' + Content-Type: + - application/octet-stream + User-Agent: + - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 26 Jul 2023 20:03:22 GMT + x-ms-version: + - '2022-11-02' + method: PUT + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/source/202307260000/ca1b9126-460c-43a7-9eea-453c7bd24fca.tar.gz?sv=2021-12-02&se=2023-07-26T21%3A03%3A20Z&sr=b&sp=cw&sig=%2FN2eYGW4MWy0lrlEZ42astxvEa6Ob9ZoPBSDtebbB9Y%3D + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - BzGwQTDopoPeRgvvTOngJA== + date: + - Wed, 26 Jul 2023 20:03:21 GMT + etag: + - '"0x8DB8E135CF3E503"' + last-modified: + - Wed, 26 Jul 2023 20:03:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - 3fDI+kIC+5Q= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2022-11-02' + status: + code: 201 + message: Created +- request: + body: '{"type": "DockerBuildRequest", "isArchiveEnabled": false, "imageNames": + ["runtime7.0:20230726130321818917"], "isPushEnabled": true, "noCache": false, + "dockerFilePath": "499515823e40463bac37da840ab080ab_Dockerfile", "arguments": + [], "platform": {"os": "Linux", "architecture": "amd64"}, "sourceLocation": + "source/202307260000/ca1b9126-460c-43a7-9eea-453c7bd24fca.tar.gz"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '370' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-26T20:03:22+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:21.8959247+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview + response: + body: + string: '{"logLink":"https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D"}' + headers: + cache-control: + - no-cache + content-length: + - '224' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:22 GMT + etag: + - '"0x8DB8E135DC17913"' + last-modified: + - Wed, 26 Jul 2023 20:03:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '0' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:22 GMT + etag: + - '"0x8DB8E135DDB1806"' + last-modified: + - Wed, 26 Jul 2023 20:03:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-range: + - bytes=0-4095 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "2023/07/26 20:03:23 Downloading source code...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-range: + - bytes 0-47/48 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:22 GMT + etag: + - '"0x8DB8E135DDB1806"' + last-modified: + - Wed, 26 Jul 2023 20:03:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:22 GMT + etag: + - '"0x8DB8E135DDB1806"' + last-modified: + - Wed, 26 Jul 2023 20:03:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:26 GMT + etag: + - '"0x8DB8E135F94E771"' + last-modified: + - Wed, 26 Jul 2023 20:03:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:28 GMT + x-ms-range: + - bytes=48-4143 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "2023/07/26 20:03:24 Finished downloading source code\r\n2023/07/26 + 20:03:24 Using acb_vol_204dadc0-5382-4a8c-9eb9-3afc40bdcd09 as the home volume\n2023/07/26 + 20:03:24 Setting up Docker configuration...\n2023/07/26 20:03:25 Successfully + set up Docker configuration\n2023/07/26 20:03:25 Logging in to registry: containerapp000004.azurecr.io\n2023/07/26 + 20:03:25 Successfully logged into containerapp000004.azurecr.io\n2023/07/26 + 20:03:25 Executing step ID: build. Timeout(sec): 28800, Working directory: + '', Network: ''\n2023/07/26 20:03:25 Scanning for dependencies...\n2023/07/26 + 20:03:26 Successfully scanned dependencies\n2023/07/26 20:03:26 Launching + container with name: build\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '672' + content-range: + - bytes 48-731/732 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:26 GMT + etag: + - '"0x8DB8E135F94E771"' + last-modified: + - Wed, 26 Jul 2023 20:03:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:26 GMT + etag: + - '"0x8DB8E135F94E771"' + last-modified: + - Wed, 26 Jul 2023 20:03:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1428' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:29 GMT + etag: + - '"0x8DB8E13611E85BB"' + last-modified: + - Wed, 26 Jul 2023 20:03:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '4' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:31 GMT + x-ms-range: + - bytes=732-4827 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "Sending build context to Docker daemon 35.33kB\r\r\nStep 1/17 : FROM + mcr.microsoft.com/dotnet/aspnet:6.0 AS base\n6.0: Pulling from dotnet/aspnet\n9d21b12d5fab: + Pulling fs layer\n20307483facf: Pulling fs layer\n51885b20fc11: Pulling fs + layer\n573f002b5cb0: Pulling fs layer\nb70e22fadac0: Pulling fs layer\n573f002b5cb0: + Waiting\nb70e22fadac0: Waiting\n20307483facf: Verifying Checksum\n20307483facf: + Download complete\n9d21b12d5fab: Verifying Checksum\n9d21b12d5fab: Download + complete\n51885b20fc11: Verifying Checksum\n51885b20fc11: Download complete\n573f002b5cb0: + Verifying Checksum\n573f002b5cb0: Download complete\nb70e22fadac0: Verifying + Checksum\nb70e22fadac0: Download complete\n9d21b12d5fab: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '696' + content-range: + - bytes 732-1427/1428 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:29 GMT + etag: + - '"0x8DB8E13611E85BB"' + last-modified: + - Wed, 26 Jul 2023 20:03:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '4' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1428' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:29 GMT + etag: + - '"0x8DB8E13611E85BB"' + last-modified: + - Wed, 26 Jul 2023 20:03:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '4' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:33 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1541' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:31 GMT + etag: + - '"0x8DB8E1362577701"' + last-modified: + - Wed, 26 Jul 2023 20:03:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:33 GMT + x-ms-range: + - bytes=1428-5523 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "20307483facf: Pull complete\n51885b20fc11: Pull complete\n573f002b5cb0: + Pull complete\nb70e22fadac0: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '113' + content-range: + - bytes 1428-1540/1541 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:31 GMT + etag: + - '"0x8DB8E1362577701"' + last-modified: + - Wed, 26 Jul 2023 20:03:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:33 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1541' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:31 GMT + etag: + - '"0x8DB8E1362577701"' + last-modified: + - Wed, 26 Jul 2023 20:03:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:35 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2123' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:33 GMT + etag: + - '"0x8DB8E1363A1F207"' + last-modified: + - Wed, 26 Jul 2023 20:03:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:35 GMT + x-ms-range: + - bytes=1541-5636 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "Digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> e21be194dede\nStep + 2/17 : WORKDIR /app\n ---> Running in dd8b3d867bd3\nRemoving intermediate + container dd8b3d867bd3\n ---> b58e6cc10c8d\nStep 3/17 : EXPOSE 80\n ---> Running + in 38efd3a3e963\nRemoving intermediate container 38efd3a3e963\n ---> 6bc1a4a8ac21\nStep + 4/17 : EXPOSE 443\n ---> Running in 8d0865b24a6d\nRemoving intermediate container + 8d0865b24a6d\n ---> f06337b97c68\nStep 5/17 : FROM mcr.microsoft.com/dotnet/sdk:6.0 + AS build\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '582' + content-range: + - bytes 1541-2122/2123 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:33 GMT + etag: + - '"0x8DB8E1363A1F207"' + last-modified: + - Wed, 26 Jul 2023 20:03:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:36 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2123' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:33 GMT + etag: + - '"0x8DB8E1363A1F207"' + last-modified: + - Wed, 26 Jul 2023 20:03:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:38 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2614' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:36 GMT + etag: + - '"0x8DB8E13650E4849"' + last-modified: + - Wed, 26 Jul 2023 20:03:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:39 GMT + x-ms-range: + - bytes=2123-6218 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "6.0: Pulling from dotnet/sdk\n9d21b12d5fab: Already exists\n20307483facf: + Already exists\n51885b20fc11: Already exists\n573f002b5cb0: Already exists\nb70e22fadac0: + Already exists\n3daac94afcbd: Pulling fs layer\n4cda43ab38c0: Pulling fs layer\naa0c354e371d: + Pulling fs layer\naa0c354e371d: Verifying Checksum\naa0c354e371d: Download + complete\n3daac94afcbd: Verifying Checksum\n3daac94afcbd: Download complete\n4cda43ab38c0: + Verifying Checksum\n4cda43ab38c0: Download complete\n3daac94afcbd: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '491' + content-range: + - bytes 2123-2613/2614 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:36 GMT + etag: + - '"0x8DB8E13650E4849"' + last-modified: + - Wed, 26 Jul 2023 20:03:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:39 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2614' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:37 GMT + etag: + - '"0x8DB8E13650E4849"' + last-modified: + - Wed, 26 Jul 2023 20:03:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:41 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2614' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:39 GMT + etag: + - '"0x8DB8E13650E4849"' + last-modified: + - Wed, 26 Jul 2023 20:03:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:43 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2643' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:41 GMT + etag: + - '"0x8DB8E13684708EA"' + last-modified: + - Wed, 26 Jul 2023 20:03:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:43 GMT + x-ms-range: + - bytes=2614-6709 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "4cda43ab38c0: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '29' + content-range: + - bytes 2614-2642/2643 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:41 GMT + etag: + - '"0x8DB8E13684708EA"' + last-modified: + - Wed, 26 Jul 2023 20:03:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:43 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2643' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:41 GMT + etag: + - '"0x8DB8E13684708EA"' + last-modified: + - Wed, 26 Jul 2023 20:03:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:46 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3086' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:44 GMT + etag: + - '"0x8DB8E13699923FA"' + last-modified: + - Wed, 26 Jul 2023 20:03:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:46 GMT + x-ms-range: + - bytes=2643-6738 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "aa0c354e371d: Pull complete\nDigest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> 7d987f8db548\nStep + 6/17 : WORKDIR /src\n ---> Running in dcb23d47e07d\nRemoving intermediate + container dcb23d47e07d\n ---> db870e4b5eae\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", + \".\"]\n ---> d9375158c8a0\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '443' + content-range: + - bytes 2643-3085/3086 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:44 GMT + etag: + - '"0x8DB8E13699923FA"' + last-modified: + - Wed, 26 Jul 2023 20:03:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:46 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3086' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:44 GMT + etag: + - '"0x8DB8E13699923FA"' + last-modified: + - Wed, 26 Jul 2023 20:03:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3292' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:46 GMT + etag: + - '"0x8DB8E136B11D48E"' + last-modified: + - Wed, 26 Jul 2023 20:03:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:48 GMT + x-ms-range: + - bytes=3086-7181 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: " ---> Running in 4b89916a4b2d\n Determining projects to restore...\n + \ Restored /src/TestWebApp202305.csproj (in 489 ms).\nRemoving intermediate + container 4b89916a4b2d\n ---> ffa950f91010\nStep 9/17 : COPY . .\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '206' + content-range: + - bytes 3086-3291/3292 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:46 GMT + etag: + - '"0x8DB8E136B11D48E"' + last-modified: + - Wed, 26 Jul 2023 20:03:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3292' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:46 GMT + etag: + - '"0x8DB8E136B11D48E"' + last-modified: + - Wed, 26 Jul 2023 20:03:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:51 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3626' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:49 GMT + etag: + - '"0x8DB8E136CC821DA"' + last-modified: + - Wed, 26 Jul 2023 20:03:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:51 GMT + x-ms-range: + - bytes=3292-7387 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: " ---> 8f7c5afd3344\nStep 10/17 : WORKDIR \"/src/.\"\n ---> Running + in e3d1afc51333\nRemoving intermediate container e3d1afc51333\n ---> 29f1d3cfe8ca\nStep + 11/17 : RUN dotnet build \"TestWebApp202305.csproj\" -c Release -o /app/build\n + ---> Running in a2f9427c0b6a\nMSBuild version 17.3.2+561848881 for .NET\n + \ Determining projects to restore...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '334' + content-range: + - bytes 3292-3625/3626 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:49 GMT + etag: + - '"0x8DB8E136CC821DA"' + last-modified: + - Wed, 26 Jul 2023 20:03:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:51 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3626' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:49 GMT + etag: + - '"0x8DB8E136CC821DA"' + last-modified: + - Wed, 26 Jul 2023 20:03:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3626' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:51 GMT + etag: + - '"0x8DB8E136CC821DA"' + last-modified: + - Wed, 26 Jul 2023 20:03:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:56 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4176' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:54 GMT + etag: + - '"0x8DB8E13708A23AB"' + last-modified: + - Wed, 26 Jul 2023 20:03:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:56 GMT + x-ms-range: + - bytes=3626-7721 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: " All projects are up-to-date for restore.\n TestWebApp202305 -> /app/build/TestWebApp202305.dll\r\n\nBuild + succeeded.\n 0 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:04.86\nRemoving + intermediate container a2f9427c0b6a\n ---> 522f82d96548\nStep 12/17 : FROM + build AS publish\n ---> 522f82d96548\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" + -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in 547175bca2f6\nMSBuild + version 17.3.2+561848881 for .NET\n Determining projects to restore...\n + \ All projects are up-to-date for restore.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '550' + content-range: + - bytes 3626-4175/4176 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:54 GMT + etag: + - '"0x8DB8E13708A23AB"' + last-modified: + - Wed, 26 Jul 2023 20:03:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:56 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4176' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:54 GMT + etag: + - '"0x8DB8E13708A23AB"' + last-modified: + - Wed, 26 Jul 2023 20:03:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:59 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4563' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:56 GMT + etag: + - '"0x8DB8E1371EFC400"' + last-modified: + - Wed, 26 Jul 2023 20:03:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:59 GMT + x-ms-range: + - bytes=4176-8271 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: " TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\n + \ TestWebApp202305 -> /app/publish/\nRemoving intermediate container 547175bca2f6\n + ---> a49a7c1b0d75\nStep 14/17 : FROM base AS final\n ---> f06337b97c68\nStep + 15/17 : WORKDIR /app\n ---> Running in 2beb51c1473e\nRemoving intermediate + container 2beb51c1473e\n ---> a32a614bf025\nStep 16/17 : COPY --from=publish + /app/publish .\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '387' + content-range: + - bytes 4176-4562/4563 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:57 GMT + etag: + - '"0x8DB8E1371EFC400"' + last-modified: + - Wed, 26 Jul 2023 20:03:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:59 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4563' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:57 GMT + etag: + - '"0x8DB8E1371EFC400"' + last-modified: + - Wed, 26 Jul 2023 20:03:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:01 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4856' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:59 GMT + etag: + - '"0x8DB8E1373227468"' + last-modified: + - Wed, 26 Jul 2023 20:03:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:01 GMT + x-ms-range: + - bytes=4563-8658 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: " ---> fd5b9efeae7e\nStep 17/17 : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\n + ---> Running in a8470ff02390\nRemoving intermediate container a8470ff02390\n + ---> 8f2a8f6febb3\nSuccessfully built 8f2a8f6febb3\nSuccessfully tagged containerapp000004.azurecr.io/runtime7.0:20230726130321818917\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '287' + content-range: + - bytes 4563-4855/4856 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:59 GMT + etag: + - '"0x8DB8E1373227468"' + last-modified: + - Wed, 26 Jul 2023 20:03:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:01 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4856' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:59 GMT + etag: + - '"0x8DB8E1373227468"' + last-modified: + - Wed, 26 Jul 2023 20:03:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:03 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4856' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:01 GMT + etag: + - '"0x8DB8E1373227468"' + last-modified: + - Wed, 26 Jul 2023 20:03:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:06 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4856' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:04 GMT + etag: + - '"0x8DB8E1373227468"' + last-modified: + - Wed, 26 Jul 2023 20:03:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:10 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5442' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:08 GMT + etag: + - '"0x8DB8E13774CC67B"' + last-modified: + - Wed, 26 Jul 2023 20:04:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:10 GMT + x-ms-range: + - bytes=4856-8951 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "2023/07/26 20:03:59 Successfully executed container: build\n2023/07/26 + 20:03:59 Executing step ID: push. Timeout(sec): 3600, Working directory: '', + Network: ''\n2023/07/26 20:03:59 Pushing image: containerapp000004.azurecr.io/runtime7.0:20230726130321818917, + attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/runtime7.0]\n80e6d383af82: + Preparing\n4912db3e16df: Preparing\n5ff9c7f01178: Preparing\nd20574564839: + Preparing\nd6b2f81086e4: Preparing\n333872f929fb: Preparing\n4b3ba104e9a8: + Preparing\n333872f929fb: Waiting\n4b3ba104e9a8: Waiting\n4912db3e16df: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '574' + content-range: + - bytes 4856-5441/5442 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:08 GMT + etag: + - '"0x8DB8E13774CC67B"' + last-modified: + - Wed, 26 Jul 2023 20:04:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:10 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5442' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:08 GMT + etag: + - '"0x8DB8E13774CC67B"' + last-modified: + - Wed, 26 Jul 2023 20:04:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:13 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5527' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:10 GMT + etag: + - '"0x8DB8E13793FC634"' + last-modified: + - Wed, 26 Jul 2023 20:04:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:13 GMT + x-ms-range: + - bytes=5442-9537 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "80e6d383af82: Pushed\nd20574564839: Pushed\n5ff9c7f01178: Pushed\n333872f929fb: + Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '85' + content-range: + - bytes 5442-5526/5527 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:10 GMT + etag: + - '"0x8DB8E13793FC634"' + last-modified: + - Wed, 26 Jul 2023 20:04:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:13 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5527' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:11 GMT + etag: + - '"0x8DB8E13793FC634"' + last-modified: + - Wed, 26 Jul 2023 20:04:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:16 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '6773' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:14 GMT + etag: + - '"0x8DB8E137C702321"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:16 GMT + x-ms-range: + - bytes=5527-9622 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "d6b2f81086e4: Pushed\n4b3ba104e9a8: Pushed\r\n20230726130321818917: + digest: sha256:842812e1767c8ba0d0c97c019c1cfabe48eda5ac706d2cc66a2f11a034e224fe + size: 1786\n2023/07/26 20:04:13 Successfully pushed image: containerapp000004.azurecr.io/runtime7.0:20230726130321818917\n2023/07/26 + 20:04:13 Step ID: build marked as successful (elapsed time in seconds: 33.451243)\n2023/07/26 + 20:04:13 Populating digests for step ID: build...\n2023/07/26 20:04:14 Successfully + populated digests for step ID: build\n2023/07/26 20:04:14 Step ID: push marked + as successful (elapsed time in seconds: 13.879196)\n2023/07/26 20:04:14 The + following dependencies were found:\n2023/07/26 20:04:14 \n- image:\n registry: + containerapp000004.azurecr.io\n repository: runtime7.0\n tag: \"20230726130321818917\"\n + \ digest: sha256:842812e1767c8ba0d0c97c019c1cfabe48eda5ac706d2cc66a2f11a034e224fe\n + \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: dotnet/aspnet\n + \ tag: \"6.0\"\n digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\n + \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: + dotnet/sdk\n tag: \"6.0\"\n digest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\n + \ git: {}\n\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1234' + content-range: + - bytes 5527-6772/6773 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:14 GMT + etag: + - '"0x8DB8E137C702321"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:16 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '6811' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:14 GMT + etag: + - '"0x8DB8E137C8EF181"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:16 GMT + x-ms-range: + - bytes=6773-10868 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: "Run ID: ca1 was successful after 52s\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '38' + content-range: + - bytes 6773-6810/6811 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:14 GMT + etag: + - '"0x8DB8E137C8EF181"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:16 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/e7bc283dff0b41e390b076bece79332a-jp6l396ln5/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A22Z&sr=b&sp=r&sig=M7ju9Ea3aRUhO3D1PLSo4IVXKy4eZFdX5lj2aUJeu1I%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '6811' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:14 GMT + etag: + - '"0x8DB8E137C8EF181"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", + "value": "j03g7dv6Y+QWR+wtL3toAHovSx+1t4cbfYFjstzqqw+ACRDy4aIG"}], "activeRevisionsMode": + "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", + "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], + "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "containerapp000004.azurecr.io/runtime7.0:20230726130321818917", "name": "containerapp000003", + "command": null, "args": null, "env": null, "resources": null, "volumeMounts": + null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": + null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1033' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:04:17.0671639Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:04:17.0671639Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.229.254.124"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230726130321818917","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/a253f6f1-629f-4bc7-8ede-527daf1f413d?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '2059' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '699' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/a253f6f1-629f-4bc7-8ede-527daf1f413d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/a253f6f1-629f-4bc7-8ede-527daf1f413d","name":"a253f6f1-629f-4bc7-8ede-527daf1f413d","status":"InProgress","startTime":"2023-07-26T20:04:18.0555439"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04: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 --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/a253f6f1-629f-4bc7-8ede-527daf1f413d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/a253f6f1-629f-4bc7-8ede-527daf1f413d","name":"a253f6f1-629f-4bc7-8ede-527daf1f413d","status":"InProgress","startTime":"2023-07-26T20:04:18.0555439"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: AF35478BD03A44FAB22DDF93DF123528 Ref B: CO6AA3150218033 Ref C: 2023-07-26T20:04:23Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/a253f6f1-629f-4bc7-8ede-527daf1f413d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/a253f6f1-629f-4bc7-8ede-527daf1f413d","name":"a253f6f1-629f-4bc7-8ede-527daf1f413d","status":"Succeeded","startTime":"2023-07-26T20:04:18.0555439"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 23A7BDBD7BEE400383E0E1502A2277C8 Ref B: CO6AA3150217017 Ref C: 2023-07-26T20:04:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --image + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:04:17.0671639","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:04:17.0671639"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.229.254.124"],"latestRevisionName":"containerapp000003--qkhk45c","latestReadyRevisionName":"containerapp000003--qkhk45c","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230726130321818917","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2110' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: CA7248AECD094FDEBDAA3D0ACA3591B9 Ref B: CO6AA3150218011 Ref C: 2023-07-26T20:04:27Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 9E7E8CEF1E1D48A0883DD30B66E459CD Ref B: CO6AA3150217019 Ref C: 2023-07-26T20:04:28Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:04:17.0671639","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:04:17.0671639"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.229.254.124"],"latestRevisionName":"containerapp000003--qkhk45c","latestReadyRevisionName":"containerapp000003--qkhk45c","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/runtime7.0:20230726130321818917","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2110' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: ABC465D02D2B49E9BA637DF88FE805CB Ref B: CO6AA3150218037 Ref C: 2023-07-26T20:04:29Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml new file mode 100644 index 00000000000..cc3b02da983 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_Dockerfile_e2e.yaml @@ -0,0 +1,6812 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg3ojxkb2kfwx4jux6ao4y3?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"dab12d6f-f25e-42d1-bc76-eae6cde32781","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T20:02:07.9338002Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T17:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T20:02:07.9338002Z","modifiedDate":"2023-07-26T20:02:07.9338002Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg3ojxkb2kfwx4jux6ao4y3","name":"workspace-clitestrg3ojxkb2kfwx4jux6ao4y3","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg3ojxkb2kfwx4jux6ao4y3?api-version=2021-12-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg3ojxkb2kfwx4jux6ao4y3?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"dab12d6f-f25e-42d1-bc76-eae6cde32781","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T20:02:07.9338002Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T17:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T20:02:07.9338002Z","modifiedDate":"2023-07-26T20:02:07.9338002Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg3ojxkb2kfwx4jux6ao4y3","name":"workspace-clitestrg3ojxkb2kfwx4jux6ao4y3","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg3ojxkb2kfwx4jux6ao4y3/sharedKeys?api-version=2020-08-01 + response: + body: + string: '{"primarySharedKey":"CfXA1zTKE6Q5Q2eKX4m6NDlWxeNw/v2s4y9hOXCDJUxGesasUh5MIJWUtogyI1jV3ab8uCgxNbdonmKqU7AWFA==","secondarySharedKey":"azJHKM8yNunsKM1xZAVAEIaEK8X1cOretAcXM7bx4KfdWW7gFtnNWUQgsZufe9w9DLGtWLHsLXE/NQVsfxtRJw=="}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + cache-control: + - no-cache + content-length: + - '223' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 7FC268F70A8E4C419F0432DA28540315 Ref B: CO6AA3150220047 Ref C: 2023-07-26T20:02:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "dab12d6f-f25e-42d1-bc76-eae6cde32781", + "sharedKey": "CfXA1zTKE6Q5Q2eKX4m6NDlWxeNw/v2s4y9hOXCDJUxGesasUh5MIJWUtogyI1jV3ab8uCgxNbdonmKqU7AWFA=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '450' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6294214Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6294214Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemoss-46ad9186.westeurope.azurecontainerapps.io","staticIp":"20.4.147.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"dab12d6f-f25e-42d1-bc76-eae6cde32781","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1534' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-msedge-ref: + - 'Ref A: B43347E9AFBE4990A5035188B9237D94 Ref B: CO6AA3150217031 Ref C: 2023-07-26T20:02:09Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 2323A698178F472BBB198ADF95DACF5B Ref B: CO6AA3150220019 Ref C: 2023-07-26T20:02:15Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6EC09310CD994A5C808AE10979F3270E Ref B: CO6AA3150217033 Ref C: 2023-07-26T20:02:18Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: F470BD5D539B4226AC172BF9CCFE247E Ref B: CO6AA3150219025 Ref C: 2023-07-26T20:02:21Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 7C3F46D4D7264B478F0083B488484A2E Ref B: CO6AA3150220019 Ref C: 2023-07-26T20:02:24Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0ED09AE06B664082A545DAA40638DDD9 Ref B: CO6AA3150219045 Ref C: 2023-07-26T20:02:26Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D2A71A230A15485A9FFE382F79C15169 Ref B: CO6AA3150217045 Ref C: 2023-07-26T20:02:29Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 9E22372506F1412B874BFCC2681F3FED Ref B: CO6AA3150218011 Ref C: 2023-07-26T20:02:32Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 8A571509C2944631B6B84BEE770BA907 Ref B: CO6AA3150219051 Ref C: 2023-07-26T20:02:35Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 4830E5A098734EBDAA88B43E2D793200 Ref B: CO6AA3150218045 Ref C: 2023-07-26T20:02:38Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B503F3C9A6C14FB5ADDFA96CE9A9863E Ref B: CO6AA3150217019 Ref C: 2023-07-26T20:02:41Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 1075C8F4F42C4F15B1AFCE97EAD7A0A7 Ref B: CO6AA3150217047 Ref C: 2023-07-26T20:02:44Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: CB7484F6F08740FA9B758EBFC341BBFA Ref B: CO6AA3150218045 Ref C: 2023-07-26T20:02:46Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 35BD1D9868224050B363D534E1B2C72C Ref B: CO6AA3150218045 Ref C: 2023-07-26T20:02:48Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: EC23E95D95384700A2346BF840671965 Ref B: CO6AA3150217027 Ref C: 2023-07-26T20:02:51Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"InProgress","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 82453BE1A022480485B9751CF9DD8544 Ref B: CO6AA3150217047 Ref C: 2023-07-26T20:02:54Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/5170fe75-3295-44f5-9728-cc6177c4180d","name":"5170fe75-3295-44f5-9728-cc6177c4180d","status":"Succeeded","startTime":"2023-07-26T20:02:14.5238316"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: DE646B2675744F6C89C2AB08BB75EC80 Ref B: CO6AA3150220019 Ref C: 2023-07-26T20:02:57Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6294214","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6294214"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemoss-46ad9186.westeurope.azurecontainerapps.io","staticIp":"20.4.147.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"dab12d6f-f25e-42d1-bc76-eae6cde32781","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1534' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 318C83C3BB5E445E921818DDE8222B24 Ref B: CO6AA3150217053 Ref C: 2023-07-26T20:02:58Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true, "anonymousPullEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:02:59.8292736Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.6964293+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.6964293+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6c2de2fb-2bef-11ee-bfa7-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1380' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: F7EDA9C3C24545B9A2E09B54EABF4C4C Ref B: CO6AA3150218021 Ref C: 2023-07-26T20:02:59Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6c2de2fb-2bef-11ee-bfa7-bce92fa43675?api-version=2022-02-01-preview + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6c2de2fb-2bef-11ee-bfa7-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 5443B8BC1F4547339E6E7BD7302A427D Ref B: CO6AA3150218021 Ref C: 2023-07-26T20:03:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:02:59.8292736Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.6964293+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.6964293+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: C1F701396F0F43A582D294AC3367400A Ref B: CO6AA3150218021 Ref C: 2023-07-26T20:03:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:02:59.8292736Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.6964293+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.6964293+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview + response: + body: + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"HTrLDo49fMHqklQiFJqGbMZdtTkcq4ktKNZUlrKbEq+ACRBKKzMG"},{"name":"password2","value":"JbtlETq3anyux7CkeN8yb3KgU313ixD2hC4LGFWDge+ACRAA3bfy"}]}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '214' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6294214","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6294214"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemoss-46ad9186.westeurope.azurecontainerapps.io","staticIp":"20.4.147.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"dab12d6f-f25e-42d1-bc76-eae6cde32781","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1534' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6294214","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6294214"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemoss-46ad9186.westeurope.azurecontainerapps.io","staticIp":"20.4.147.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"dab12d6f-f25e-42d1-bc76-eae6cde32781","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1534' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 20:03:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6294214","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6294214"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemoss-46ad9186.westeurope.azurecontainerapps.io","staticIp":"20.4.147.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"dab12d6f-f25e-42d1-bc76-eae6cde32781","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1534' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '234' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmv2zz2idqv22c2k6tv4jnv5fpi2vggwuegd4ld6pzho5oo7zprlfkdtgh7aq7ok46/providers/Microsoft.ContainerRegistry/registries/containerappscixnekzodz7","name":"containerappscixnekzodz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5o46kqig5lbslefzxqlx7zi4bvn2dllfwaoj5ikp4ny2uy73ssekdcawdp6rhw3mq/providers/Microsoft.ContainerRegistry/registries/containerappseirdstg4xa4","name":"containerappseirdstg4xa4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtfu236h5uocpfn2rarrdfgbibb3nj4ld4pbhrqck63u63sh35xpjcj6cajed2jwd4/providers/Microsoft.ContainerRegistry/registries/containerappbkztncclixt6","name":"containerappbkztncclixt6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6518' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:02:59.8292736Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.6964293+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.6964293+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - '2022-12-01' + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 20:03:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview + response: + body: + string: '{"uploadUrl":"https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/source/202307260000/75761798-9419-483f-8167-978c98c43a08.tar.gz?sv=2021-12-02&se=2023-07-26T21%3A03%3A21Z&sr=b&sp=cw&sig=zPnAQQ2UuoPac2H%2Fraf3ROzNLruJlvvH2iqcjcX2PTs%3D","relativePath":"source/202307260000/75761798-9419-483f-8167-978c98c43a08.tar.gz"}' + headers: + cache-control: + - no-cache + content-length: + - '354' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: !!binary | + H4sICAp8wWQC/2J1aWxkX2FyY2hpdmVfYmVhM2EyNjJmYjMyNDMwNWE0NThkM2E1YTUxZDZlYTIu + dGFyAO09+XcUx5lkN/sL+3jPf0Jl/DYRfkzPoQuEJCMDDko4tJJsx+s4Ts9MSWro6R5390jIPMd5 + m/Xu2+Mlm42Tl31ex0lsbDAWtsHcYIxvcx8SAiQQSEIYdCGQQBxy7VdV3XNLgANjYuqzP6bVXfV9 + X13fUV1dJXkkz6wKeek8LIewMemOgJfDeL9eb25u/Jre9/ny8n2T0NJJWYCoackGsL/dhfwrAX8h + CltKGJf4CqYXeGfkT5/hlwoL86YX5E+eJOCbD54s8KDjobCwcPzxn3Zd6C/0TkL5YvzfcZCE/hf6 + X+j/exbkSMTElqVotaY0B9djVY+EsWZJi01du53jv6CgYNzx78/1p4z/vEJ/7iTkFeP/jsOyKZMR + cs3BlqyoODTXMHTDdBUhy4jiaezRfL22FnoH3GNJ+Z35tKfEbzEKNXJUteCeq1yr0Y2wbCm65poW + S7BACRq6qddYUpkZWYit2bqBaerHZEOj9HnCZ+kP/AP/i7Ep7L8Y/8L+C8iW/b+dNv+W7L+/MGX8 + +/PyCoT9z579/zqMPHcvylRVb8ChebppUb/D9YBLGH9h/4X9F/ZfQDagQq7F5h2eBL7l+V+f158v + 5n+F/hftL/S/gCzofzbvJwXNOiusZj3+8+UXpM7/+vMLfCL+ywYMbtk+KwJ9YMrkWWE9hFXEusIC + egm37NDvUQU3zJEt+QlXtWKp2PUkKkEultA1k4VrUyYX1/lQUJVNs8Rl4aWWOyRrtdhwlfKeVeyp + 85XSRP6Mico0hGk6pAeDUcPAIdRQp6gYRQw9iE0TIkfUqEcNZOCno9i0KDl/KeU6S6lBOUxYqapO + b6jkz8tDU6dMtkUvjpQ60Sn8YVqGrtWW2ulQ+ZyiYo99DxUHgU7pLE4tRqnYw27bxDyUml3e3NKE + 9yWIZgOxcmkpHZZVDXIkQoW3dGTV4Rj7hHxx9lirV+CKEQspZkSVG00UsuflkRIPt5Ec0KMWI8gr + zaqTrVjNScCfSRmTwuFaDRkSJU5kaNbpUTWkfc9CAaCqyQHKEziCABFVb4Q/oCSqEmQCmFJMas6h + 3EJBWYPWMaOqBaI68tOim1gzFUupx0lFqDH0MMJLgzjCCNIKwloIRU1smBIn+jBwV/WgrIIMgSib + nphmi3ZrlRloRPYMV1K+sqqKhXOrZy+qnPvU3IWPllcuWrhg7sLqzCTqZUPhjPUJ+XLJZSgJ1AWo + lRhTqL1Ywwj/T/h/wv8TcLf6f/CTZf8vNy91/Of6wCUU/l9Wik9tVKZ5e2lBfRC8u4kTSJXyM7rB + OlEsbVWjaeGwNEeRazXdtJQgfTRlsiaHsRmRgxhVg3F8DAfKIhG/15/rzZdY/pjL9kQlpAOvAM+W + g3U4Z07U4E5DCfJOQ/P1oPNXUjLnvrRQ1/A0tFCvskBESEVXMkx90qZcDhIZuEyzFPBFwPVsrNaX + YM1+GokGwMXhDmqCG4yKEJXPdolpwmVxj9LOA/YfSv4girmNaBmqxdZM6nnMRMxhTMkR0HUVJfms + qKQUfYcTksrNhVFVXWTMDUesxpy4WzsziZKh1MsWBl9DDuma2ojK6WscbBTHZS9FT6ns3swMIsST + 5WTKyTNOjWdLKDYFmzJUcYyF8yhTget1JYQWad/HVs74NBMqA5UFwW1UrEZpNnVsNetBCW4/+CCa + Z1mR2bpGAwip2oD+VB7CtEGVVBHsn2eFkhf+n9D/wv8TMK7/V66F8NKva/7Pm+fzpc3/+QuF//e1 + zP+xrnAz83/z9DBGNGt8DjCk1CfN7wXBMNP5PXsiKj5FaE8QufNcpY9hNQiU7BlCe8puPpYNZ6Kr + WEZ1Bq4pcdWB4TeLPJ6QHjSlcMwhhdwe2Yxo2PIE6XKT0kBUUUPUEQUfk868mKhBsepQWVWFtHBu + NaKua7FHLpXseTIPSF16z644EfZf2H9h/4X9j9v/rM//eAt86fM/ucL+Z8v+39YpoFuY50mab4m7 + HRPPt4w35xHPP+GcRzxZTqac2ZrzuHvmKYT9F/Zf2P973f5XULUabLxDMwA3/P4jPy/N/nvF+5+v + J/63u8LNzADYSVGFDsau0Z4GgCi/dFZacju8Z8tSHjHpCg7FZJMHdEkFX+XCl/iYioW/Z3I7D6Qj + jLR0N66cEPG/sP/C/gv45tn/2z0DcMP43586/5+b780T9v9eiv8T3Y6vNgOQSGHCOYDEhDmZc2d7 + 7cPXNwsg7L+w/8L+3+v2v6pONnDoTn0Geuvff8L4LxDffwr9L9pf6H8BWdP/T82XG/WodbungW8Q + /+XleQtS9//L9Yn532zFf8XfmbNodvXjFXMRbXX2mSb8IlXWaktcWHOxO2AenOVZYWzJKAg9xsRW + iStq1binu5An6SmNAUtc9QpuiOiG5UJBul5bg9QNSsiqKwnheiWI3eyPaUjRFEuRVbcZlFXQQ5I3 + gZpFp48zzCcjd1p0Wezhie2cqqItgSBRLXGZVqOKzTqMQRC+kuxnHlUJeAK6bpmWIUc8IcW0PEHT + jN+SwooGw8BMEGVigjQ3nbvmmWQz4pYjEayF3PXYMBVdK3HRDxFumlxa6MwT3Qz1Yo/dWMUBPdQY + W3vH7Hvit7CaHFusB5cB2UD8x42XRmQgbYadGxbEuCqmH0Am3FSV2joLBWrdDXVQbBTQDaDvDuiW + pYfhr6Vusw4C9AYUDrhzXaXJ4XPiQkHaNWRFiy8TTEooJ4voDhggml0DBpZLXPyavkkocfFlLK7S + 9J4hZ6IdiIKsWgoDXlbDhazGCJDkaVwoBJ3PHTDtx1RqVZUjJk54Ihu1dDxINqF4CvrxqJsW09DV + GKOqaIQODRyazYeGK11AB1h+3ig4VOKqkdUYVVUO0B5UzaSiLaPU8i25SjOTKzaBSuYSu5UgzVfs + oUkyVZeH10WmRwnNmVJ6FLugHcqtaNDtsbtGxUvRYtC8Sk2j29YN7gC2GjAeX/SomsKDdmBKyV1r + 6A1u33gZ7dGWkNkNHTY8UfK0rudmo9X+Zt1YcqMOOI8taJUnEgg00F0grz3r5Sq1L76y0MWeqJqx + 0/DFtRPdK/aAwLEP7JP01A31RHEYbiEYV1AYeulyUkcyaJ1ZlaAxsfEQaMXEabhiD80ZE4ALZ/9V + A/YAGw5RW8dZegTZD1gNh6MwjJOkuhn19t2gHmmciaiGymDM4BY06FdqtcT6LfZwQeMlMoOGErGQ + aQQdM7j46Sg2GrkN5NfM+C02mTJgyUvHzZxiQxcnmtBAVAup+CaJLbbN5+KJ7FsiDU5lltwgKxbi + LVuFg1T5lZmNWjDHVcVSmq5pbNsIBfzbIsR051RqI23bCB2O+jz3rv8v4n8R/4v4X8T/GeJ/Gmxk + I/73FeSmrv/K93nF/k/Ziv89D6AKCO/ARzcx+Ol6MEo3tbH3GrLQzX125QmqCvXiTSWEPczyK1qt + m8aRYP+VGnvroCmT+aZCdL2XiWjwpWs1Sm3U4Bvl0DVhhr4YzDhdFsb9B7adDqPRiEwqVRA10O+6 + TBNbpoQe8FBXQJYS40P+ZpXFpW72JroIaXTrIZW9pmU+mwzhq1aE+Adq7HYDOHeQHctLihD7gTSq + 82WbzElCMKMbReh++jojGHQeSgFLc0cMJSwbjcnpampqGO2AHFwCQQqUx+088gUKcNDPn3K3MvZk + eoFPjhOn3nxEUaG6JMexl2T6aTyehhIfmnUQbJfGE91+SRLc32UJqeHvIuSLLEWmriohdD/Op//x + XFLytEBiNn5r3Jwsb2wSwc7o/F2EvEjy5xs4jKRC9mPUBuQc7zTE/5e8+VMdMjxqhSqjm025+XpC + Tq9GZ/31GegePqDBaoCFp3WYzm0UIUWrw4ZixQSynX6WOaLTba106ENyAMSHEMCuQV4qL+9TdIIL + qHu9/zAzQ5dsAC85nWuBN7J0ZtY2wRb+n/D/hP8n/D/u/z0KdjHELLUdPVfQTexk9S97I3TD9f8F + Ke///TSD8P+y9f5nvDkhd32sOyRND9m3M07t3Awxd1TTA5YRNcGJSaOZ8CwTfTFihf0X41/YfwG3 + 0/4/RV+wl4fpG0nz9n8EeCP77yvIT13/4fPlC/ufJfs/i6/vT30FNWXyrBsv5Z8lh0LVcu08rEYg + Mn5g2vhfCcRSmcKIC/sv7L+w/wLuLvtfRXesvxNbANzI/nvT93/Op+c/CfufHftvf4jGX/7RD/vt + 94CumeIsRmH/hf0X9l/AN9b+G3qtIYdv/6Z/N2//fd7C1Pgfwn/x/UdWoF42ENswl33NzkN856An + abaBZQs/xB/nyEatyU8g8HhQWSiETGzQ7zhM53yr2FpXib52Z5mkKjuNBBniGwXkcDqUuRyJAGMn + OeOVE+My214ewo98mlddXeGcAYYiSgTT9+bAix4C9h16xNLc+JlNUrmZcEJTztT4iWA04SMmnuuc + PjVPpstMjBwXPwXFNdX+mB/Y0yOzQvzMazSvqroK1ctqFCPFRLleFJIbTQk9rkdRWG5EDbLGFq0E + 6+iZZnwtC13rEjH0UJQtS0VmEGuyoejmNLbQxllXIy+RpbBpr6WhS2ncdablnIJlCzsP7uTEljQ4 + NymBShxSDL7ulSWwn1WxlTIPK2qsru0HleDXKVpt8s2yqFWnG8ozcowMf7RAjqS1Gb1fGeWphPoU + /p/w/4T/J+Cv2f+LYMNS7uQh4F9h/4fcvHyx/4PQ/6L9hf4XkCX9r8pRLVhXxc/KNaXFpq5lJ/4v + 8KeO/3x/rnj/nxVgQbELotQaGiu6ipxd6Vypb/zjj+BhUA+HIWxeKIcx3HdV8I82XNNiCXhfesjQ + G0xsQBL6+Wb8acLZyo/aRyubifQhSebjmSmzhLA+9tH8s3HaId2COBoi1AXYNGncmsY94SjrRwyV + knRCcXbedJ1uWkWFoApn0ttJd/PBMNk8HY6u8vIqNHdpxABuE1URJHNSfX21lCL6HD24hPEdV2o7 + xc1KzJ/albqsKliHw/hZqMFl9izQPKjEZ4ucvyp0w3o2gTbbLNGsK1NV+iS93aImrqqab9+ObZjo + lMelKKajuxK6cYOihUBYOsNBT4nkze6yvwR2KkLWdK0xrEfTkyVIQBlkaujM3Smp3+R5Z+QWJJTU + NFkRIW1eXm6+N7Es2d4BUvh/wv8T/t+9C2kL+4Im/QTzto//Cd//5HrTzn/wifOfsgLFtu+GqkJL + Slzx1ZvgVkhwS4K+4bJ32yi2Y4XG7xt6NOJs41HN9j162ACPoUE3lpSC81UgeYs9qfft5PRca+rJ + lGKN/hR7YjfsBOVhak4V6xG6KNWMJUu5bSd+xGS7fhjYMstDpfl5BSFffsjvDkyfPsOdFwz43dNl + /wx3fsAbxHIh9hfIM4o9yXlsQtzRmcPf9XDRF1WVzle06NJiT+aHSTmp92wfSk0Plky/ySrQk1qD + 7G65hcNJVVohB5eA51qJa7CBtSBG5VpQjYZwYvs8qphRWa2yoiFFl8qeiRpYmu28fjOlal1X4V8m + qulCjzq7qPgkX6Hkd3Yhg1pNYE03Q7E7g/jO5p4B4f8J/0/4f/cuNDQ0GLpuee4kj1t//+MtzPOJ + 9z9C/4v2F/pfQDb0P92/+O7R/778XKH/hf4X7S/0v4Cs6X9n//o7Mf4n+v4v1+tPnf/1i/N/swPs + qIe07fDynC3o6LHAOKTIKCesaG57P7vCgumRpVN5rnj+ZAoFjAJ/oUnJxNPFd84zsCrTjQxZQkrf + 2QLP3jCP79+nh+z9+sKyUQuJnC32nH3yxBgW9l+Mf2H/Bfwl9r9GrqcHgEjwzx0Z/+Pbf58/ryD1 + /Kdcb2GusP/ZgW9N+ptJCNFfNGnFfZMmfRfu3Xcf/7vu25Mm7YXrHLgHSSbNmsTvU/j5fRnJ/R3g + 398q5uTkTH1rddOWt5qaNq1uepPjm29sWr1q5aamN1Zsalr5+qamFa9vemvl6xtWU1zxGuDyBHxt + w7/8/Ln/bDt2lBw93EKOMGzm2OLgIY7Nh0grw4Mx3LZ5Eznd1cmwu/MU6T51knSdPEG6Thwnncfb + AI+RzrajpPPYEXLqWCs5dfQwYEsSvrH8le093V1kbPQSuc5whFy/THGYXLsEOHIR8ALDq8NDgOc5 + Xhwkx5oPkC+vXyNj166SsatXyNiVUU7jsp1vGPJchLQXBgEHyJWh/jTcsm4t43/9ymUy1LmH9Oz8 + I+nZ9SdyeucfyOnP/0BO7N9C2o8eSa4fu27e27qZ8f+S8r8G/K86/EdAdltuKnOSDHE5rsL1lvVx + /j27/kz2/n422ffi98me/y0DfIjse/c/WN2MOXUzGq+bttYWzj+hDgZ6z5KBc1+QgbNnSP8XPaT/ + TDfp7+kmfae7yOkT7TE5+O8g8H8X+HdD3V0hZ3YvJ/tf/AE58HIFOfTqjxge2PwCk41jYhsNk/Yj + lP/1JP6DvefIyNB5JsPw+X6Q4XRchp4uXhcJuGXDuu09p7tZ3jN7lkPZy0nzaz8mB/6wkOx/6Ydk + //pfJvB3ZOD1wPiPXbfbgMsw2NdLRi5w/iPnB0j/2R5bBi4HbY9E3LpxPecP7ffF3tfJgZfmk5bX + f8L5/998xp/WDcdRMjzYB3V5ivR2nyR7P/vI5h+vg0sXL4AM5+LtkNgWgLw/x3Hrxg3be3pOk7Hr + V8kX+1Ywvi0rfsraYP9LC8j+Db/ifdvG4cF+4N9JekGGfZ9/DPzH4nWQOhZofdn90RlT1y8lIPy9 + bdNGm/814L8Syr+AHE7kv/5XvG9fs/lDm/b1dLI62Pv5J+TypUs2jpDLI8Pk8vBFcoki1MOli0Pk + 0oUh1h4jQ4MZce07b3P+Y9fI2QOryKE/PUJaV9WQQ39+lBz8YxU5sPF/WN0whLINw7jpO9PJZNgH + /M+fHyTnBykOcBzoJ+f7+8lgfx9H6A8cz7G+OZCA9O9317yz/UxPD6vHswfeJAdf/kfSujJIDgHv + g1AHBzb+N6sbjpT/QBL/o0dANxxpJUdaHTxs6wnAlhbSGsPmjLj8lVdi/M8dXE1aXnmcHG1aTFqW + /xNpfuVH5CCMP1o3DEGGYaizvjNdTIZ9Oz8hp2Hs7t2zhxyxZUjsj4njYszpG7auovXUdeoUaVq1 + avuZMz0EMpJeyv/Pj5Gjbyqk5dXHSTNcH9z0gt3HeD8bhvbsg3FEce/OTxl/B7tj2MWxKwHp/a6u + NFzd1AT8z5Avv/yS9B56mxx+9cfk2OowaX3tJyDDE+Tglt8l8B+DvgT8YTz3wXjeu/Mzcvr06TRc + s2YNOXDgQBKuaXqDNO/bzXRmW2szaQM9/pvf/OZFSZLuj/N/hxx+5QlyrGkJk4O2xaHNv2V1QzHO + v4fJ0HroANT9boa7QJZdn3PcvHFD7HrX55+SXZ99SvZ8+iG52H+W2zTbNqxbt+7fqO2n/Cn0t6wl + R18PkPa3DfgNkiOv/ZQ0b/k9k41hEn8uwzCMLYq8TbpifZPqCEdPUF3V290B/M/F7Srghg0bkvj3 + Na8hra/+hLSt1smR5T+F6yeh/L+L8wccuZjIv4fJM5LQJ5JkiMlxiskxPNCbZL82bdqUUv515NgK + TE6saSAn3m1kv0c+WkHi8CXolgtMp6fxZ31iYhmGB3uTbOiWrVuS+Te/S46+JpPjbxns98jyp0jz + 5t8n8R+5eJH0Uf5nU/nz9uj7ojsuB9g7R1dy/n1JdnTbtm0p5V9P2lbWsnK3vaGQY3Ddsu3/SCJQ + 3dp3rofXASBtj3ib8HEB5R8DOcZYPdj8e7sZ/2vA/wrgNeB/7b333kuv/9dD5MQ7UeBdw65btr6Y + xt/hzfgPc/79586kIZcHZOnh/C+m1P/7729P4j/QsoG0rXDKv5jVRabyM9pnOY5Af6CYkf85KiNt + E1YfTHc79T8K/W/Hjh3J/A8D/5UK6VjTSNpXLWFt0LLtJXK7YAz08jWwoaOjo+TChQvkgw8+yFB+ + zv/4mxrIAHrwg+UZy38zSNunF9rgLPTDc9AfL4DtuAJ+zEXow729veTDDz+k/P82Xv6NpP0NlZxY + bTAZTq77GWnbte4r8ae8KU+KXSePk5MQC5wFO9MPtrkL9P6+ffvIsWPHngOS30qs/3Yo//FVKmmH + dmhfuTit/m+GPy2zw5viB+9vJ9DXyfbt28nmzZvZdVtb23bKO5H/pd521ga0Hqgs9Lfj0Ee3zv8M + 509/Kb7/3jamOy9fvkxOdXaSzs7OGO9E/plgomfjwXXoZw5evXqVfPzxx+QS+GgnT55M400R7pGB + gYGM2NHRcev9HOwURcp7ZGSE9jPKl9rmNN43wv379z93q/xpXV8Dv4fypv1t586d1P+4Zd4Um5ub + nxsE/3K8+smElOe5c+dID/h1p8DHam9vn5D31z2XQecp7rPnKpx5ilnfTk/XfPDAL/bt2f38vt27 + bNz5/N5dFD9/fvu2rZv27t51fM/Oz4/v/uyT47s++ej47o8/bNv18Y62XR/taFv/9uodQwN9ZPjM + YTJ0aicZOLWfnIOY8CzEpWe7oW90nmS+KdXP1DdgsT7Ep06s3NHa3DEEddu2NgpxCcRlq7SkWLQP + 4iyan9qiQRp7UfsA9IdgPFI6HUcPdwxBPNi+bik5CLHF/pVh4DVKrgIv6pechbTUXx6FGOZ8fy+j + QeM1+oz6aifbjnYMgf5sX7+MHAK/fP8bGouHRiGGo75N96kOcpXSG71MrkAsdAXojIJdYggyHT/a + 2nFhaIic2Pgc+PYQ3775NIsnqB2iNvoYxAvMJ4Zx0g19povNpXTEEHzJjgvgZ5zc/AvSukImh1ZH + YYxdJ1cuX2L+zlHwa9vb2pi+GIKYaGiQI42J+kHX7961q4PanFNb/pUcWRkizW8tZf7kFdBJ1Gc4 + 3HzQjmMOkw92vM982k8/3EHOdHaQXrAfL/z2hSpqNzq3/Ts5tgrs4tvL2Di7AuWlvgets/MQYzk+ + h+N3jkLd0/Zcu3btXJq/673/Iu1vPU2OrHuejVVaZ9RWsPyAMf/N9ltGoR/QNl6/YT3L3/3eL0l7 + k05a1/zczn+F5R+CdqL9y/aDmO/Ty/OPQT8Z27x5E8+//Vfk+Grgv/afY7pyBHT6KLTZKMTIl+z4 + lfkV0G5XRy+xZ1u3bmX5T2//NTnxVpS0b/l1jP94tu801B2NTWnss3v37tnM7u5rIqff/zXp+OhP + 4+Z37Na+fXsJ6B9y8ODBl6meoHqF6nGK9Hoi/U/t/BGITUHvvpxJ5wDNModWKg4PDzP91dra+vLd + pKfE+z/x/k+8/xNw97z/W3yX7f+UL/Z/EvpftL/Q/wKypf/Z8s/F5p0Z/xOu/8xLXf/hLygQ6z+z + AvT8b08Wz/8GZrf5CHB7q+jHDOi+qFGPGugHcr3Mzy8F4iG6Q7QY58L+i/Ev7L+AVJgRKgRrm19Q + WFgzI8+XJ88I+PLzg7Ls9fvyp+MZeU/FtzK5U/Yfgj1f6v6Pufni/OeswP1V6UcRBKFO9LDyDI4d + 6EBtMbgIhobq9AZ2zIGThFvcEA5Ea+PnPzCDTVPyXWoQ36YGRU16VgQ18fFOxa28ooY4ISVMt2xk + LkKNbFrYJl0LzgEz9A9XLlqAwkEjxRHhmz7a/khRgeRFZVUoAC7NlMmPLar84ZzySuSRI5Epk+f+ + qGJR1Vw03Ru7zMvLvTFhM7QkRpUKm0DWNIJTJs9eVPE4esI1zmZarmnIJbmenDK58pGFiFNEBiQF + twkeeMbLZZOVkBRn56L8PJIriRavv3G5I3cQVWLu4bl1VhEeuxR2uTkBKJy9BWMSdfverdF3Mnki + RfR8iUiEbv1YwjZdjHOlGYBpjaLJampDsaK73TWGHi6JEUukDJUyd2F15eMVi8oXVkPdc2lpVafJ + GVJV15NC1QsQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIOAbBv8P+oADXQAY + AQA= + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '7469' + Content-Type: + - application/octet-stream + User-Agent: + - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 26 Jul 2023 20:03:23 GMT + x-ms-version: + - '2022-11-02' + method: PUT + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/source/202307260000/75761798-9419-483f-8167-978c98c43a08.tar.gz?sv=2021-12-02&se=2023-07-26T21%3A03%3A21Z&sr=b&sp=cw&sig=zPnAQQ2UuoPac2H%2Fraf3ROzNLruJlvvH2iqcjcX2PTs%3D + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - IdX+hN9NkqFH/YWWX7z2sA== + date: + - Wed, 26 Jul 2023 20:03:21 GMT + etag: + - '"0x8DB8E135D453B8B"' + last-modified: + - Wed, 26 Jul 2023 20:03:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - riE9RpytlJg= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2022-11-02' + status: + code: 201 + message: Created +- request: + body: '{"type": "DockerBuildRequest", "isArchiveEnabled": false, "imageNames": + ["containerapp000003:20230726130322469158"], "isPushEnabled": true, "noCache": + false, "dockerFilePath": "9d71265677f9414a9b155caa02158e94_Dockerfile", "arguments": + [], "platform": {"os": "Linux", "architecture": "amd64"}, "sourceLocation": + "source/202307260000/75761798-9419-483f-8167-978c98c43a08.tar.gz"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '378' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-26T20:03:22+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:22.4267859+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview + response: + body: + string: '{"logLink":"https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D"}' + headers: + cache-control: + - no-cache + content-length: + - '227' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + date: + - Wed, 26 Jul 2023 20:03:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-error-code: + - BlobNotFound + x-ms-version: + - '2018-11-09' + status: + code: 404 + message: The specified blob does not exist. +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:26 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '48' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:23 GMT + etag: + - '"0x8DB8E135EAFE13D"' + last-modified: + - Wed, 26 Jul 2023 20:03:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '1' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:26 GMT + etag: + - '"0x8DB8E135F2FFB0F"' + last-modified: + - Wed, 26 Jul 2023 20:03:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:28 GMT + x-ms-range: + - bytes=0-4095 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "2023/07/26 20:03:24 Downloading source code...\r\n2023/07/26 20:03:25 + Finished downloading source code\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-range: + - bytes 0-101/102 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:26 GMT + etag: + - '"0x8DB8E135F2FFB0F"' + last-modified: + - Wed, 26 Jul 2023 20:03:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:26 GMT + etag: + - '"0x8DB8E135F2FFB0F"' + last-modified: + - Wed, 26 Jul 2023 20:03:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:29 GMT + etag: + - '"0x8DB8E1360739672"' + last-modified: + - Wed, 26 Jul 2023 20:03:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:31 GMT + x-ms-range: + - bytes=102-4197 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "2023/07/26 20:03:25 Using acb_vol_bca2c62a-be46-4b5f-84d2-0963d2afc5d5 + as the home volume\n2023/07/26 20:03:25 Setting up Docker configuration...\n2023/07/26 + 20:03:26 Successfully set up Docker configuration\n2023/07/26 20:03:26 Logging + in to registry: containerapp000004.azurecr.io\n2023/07/26 20:03:27 Successfully + logged into containerapp000004.azurecr.io\n2023/07/26 20:03:27 Executing step + ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2023/07/26 + 20:03:27 Scanning for dependencies...\n2023/07/26 20:03:27 Successfully scanned + dependencies\n2023/07/26 20:03:27 Launching container with name: build\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '618' + content-range: + - bytes 102-731/732 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:29 GMT + etag: + - '"0x8DB8E1360739672"' + last-modified: + - Wed, 26 Jul 2023 20:03:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:29 GMT + etag: + - '"0x8DB8E1360739672"' + last-modified: + - Wed, 26 Jul 2023 20:03:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:34 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '732' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:32 GMT + etag: + - '"0x8DB8E1360739672"' + last-modified: + - Wed, 26 Jul 2023 20:03:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:37 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1457' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:35 GMT + etag: + - '"0x8DB8E136553A7BE"' + last-modified: + - Wed, 26 Jul 2023 20:03:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:37 GMT + x-ms-range: + - bytes=732-4827 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "Sending build context to Docker daemon 35.33kB\r\r\nStep 1/17 : FROM + mcr.microsoft.com/dotnet/aspnet:6.0 AS base\n6.0: Pulling from dotnet/aspnet\r\n9d21b12d5fab: + Pulling fs layer\n20307483facf: Pulling fs layer\n51885b20fc11: Pulling fs + layer\n573f002b5cb0: Pulling fs layer\nb70e22fadac0: Pulling fs layer\n573f002b5cb0: + Waiting\nb70e22fadac0: Waiting\n20307483facf: Verifying Checksum\n20307483facf: + Download complete\n9d21b12d5fab: Verifying Checksum\n9d21b12d5fab: Download + complete\n51885b20fc11: Verifying Checksum\n51885b20fc11: Download complete\n573f002b5cb0: + Verifying Checksum\n573f002b5cb0: Download complete\nb70e22fadac0: Verifying + Checksum\nb70e22fadac0: Download complete\n9d21b12d5fab: Pull complete\n20307483facf: + Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '725' + content-range: + - bytes 732-1456/1457 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:35 GMT + etag: + - '"0x8DB8E136553A7BE"' + last-modified: + - Wed, 26 Jul 2023 20:03:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:37 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1457' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:35 GMT + etag: + - '"0x8DB8E136553A7BE"' + last-modified: + - Wed, 26 Jul 2023 20:03:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:40 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1853' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:37 GMT + etag: + - '"0x8DB8E13669DF8E3"' + last-modified: + - Wed, 26 Jul 2023 20:03:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:40 GMT + x-ms-range: + - bytes=1457-5552 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "51885b20fc11: Pull complete\n573f002b5cb0: Pull complete\nb70e22fadac0: + Pull complete\nDigest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/aspnet:6.0\n ---> e21be194dede\nStep + 2/17 : WORKDIR /app\n ---> Running in f380ac19d512\nRemoving intermediate + container f380ac19d512\n ---> fbea19fd250a\nStep 3/17 : EXPOSE 80\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '396' + content-range: + - bytes 1457-1852/1853 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:37 GMT + etag: + - '"0x8DB8E13669DF8E3"' + last-modified: + - Wed, 26 Jul 2023 20:03:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:40 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1853' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:38 GMT + etag: + - '"0x8DB8E13669DF8E3"' + last-modified: + - Wed, 26 Jul 2023 20:03:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:42 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2153' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:40 GMT + etag: + - '"0x8DB8E1367E2CC9A"' + last-modified: + - Wed, 26 Jul 2023 20:03:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:42 GMT + x-ms-range: + - bytes=1853-5948 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: " ---> Running in a32f400c0f97\nRemoving intermediate container a32f400c0f97\n + ---> 31a78e3640d6\nStep 4/17 : EXPOSE 443\n ---> Running in 6f252d762ba5\nRemoving + intermediate container 6f252d762ba5\n ---> 5f8ee7b8a3b6\nStep 5/17 : FROM + mcr.microsoft.com/dotnet/sdk:6.0 AS build\n6.0: Pulling from dotnet/sdk\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '300' + content-range: + - bytes 1853-2152/2153 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:40 GMT + etag: + - '"0x8DB8E1367E2CC9A"' + last-modified: + - Wed, 26 Jul 2023 20:03:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:42 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2153' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:40 GMT + etag: + - '"0x8DB8E1367E2CC9A"' + last-modified: + - Wed, 26 Jul 2023 20:03:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2615' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:43 GMT + etag: + - '"0x8DB8E136960A95A"' + last-modified: + - Wed, 26 Jul 2023 20:03:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:45 GMT + x-ms-range: + - bytes=2153-6248 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "9d21b12d5fab: Already exists\n20307483facf: Already exists\n51885b20fc11: + Already exists\n573f002b5cb0: Already exists\nb70e22fadac0: Already exists\n3daac94afcbd: + Pulling fs layer\n4cda43ab38c0: Pulling fs layer\naa0c354e371d: Pulling fs + layer\naa0c354e371d: Verifying Checksum\naa0c354e371d: Download complete\n3daac94afcbd: + Verifying Checksum\n3daac94afcbd: Download complete\n4cda43ab38c0: Verifying + Checksum\n4cda43ab38c0: Download complete\n3daac94afcbd: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '462' + content-range: + - bytes 2153-2614/2615 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:43 GMT + etag: + - '"0x8DB8E136960A95A"' + last-modified: + - Wed, 26 Jul 2023 20:03:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2615' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:43 GMT + etag: + - '"0x8DB8E136960A95A"' + last-modified: + - Wed, 26 Jul 2023 20:03:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2615' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:46 GMT + etag: + - '"0x8DB8E136960A95A"' + last-modified: + - Wed, 26 Jul 2023 20:03:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:51 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2644' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:48 GMT + etag: + - '"0x8DB8E136C9E443C"' + last-modified: + - Wed, 26 Jul 2023 20:03:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:51 GMT + x-ms-range: + - bytes=2615-6710 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "4cda43ab38c0: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '29' + content-range: + - bytes 2615-2643/2644 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:49 GMT + etag: + - '"0x8DB8E136C9E443C"' + last-modified: + - Wed, 26 Jul 2023 20:03:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:51 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2644' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:49 GMT + etag: + - '"0x8DB8E136C9E443C"' + last-modified: + - Wed, 26 Jul 2023 20:03:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3154' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:51 GMT + etag: + - '"0x8DB8E136E65F077"' + last-modified: + - Wed, 26 Jul 2023 20:03:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:53 GMT + x-ms-range: + - bytes=2644-6739 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "aa0c354e371d: Pull complete\nDigest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\nStatus: + Downloaded newer image for mcr.microsoft.com/dotnet/sdk:6.0\n ---> 7d987f8db548\nStep + 6/17 : WORKDIR /src\n ---> Running in 77079c4d7222\nRemoving intermediate + container 77079c4d7222\n ---> bf4eda622273\nStep 7/17 : COPY [\"TestWebApp202305.csproj\", + \".\"]\n ---> 7b30bba44a8a\nStep 8/17 : RUN dotnet restore \"./TestWebApp202305.csproj\"\n + ---> Running in 46706b757d03\n Determining projects to restore...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '510' + content-range: + - bytes 2644-3153/3154 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:51 GMT + etag: + - '"0x8DB8E136E65F077"' + last-modified: + - Wed, 26 Jul 2023 20:03:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3154' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:51 GMT + etag: + - '"0x8DB8E136E65F077"' + last-modified: + - Wed, 26 Jul 2023 20:03:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:56 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3342' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:54 GMT + etag: + - '"0x8DB8E1370293088"' + last-modified: + - Wed, 26 Jul 2023 20:03:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:56 GMT + x-ms-range: + - bytes=3154-7249 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: " Restored /src/TestWebApp202305.csproj (in 487 ms).\nRemoving intermediate + container 46706b757d03\n ---> 626ad6b98571\nStep 9/17 : COPY . .\n ---> 0ed563d8cf85\nStep + 10/17 : WORKDIR \"/src/.\"\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '188' + content-range: + - bytes 3154-3341/3342 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:54 GMT + etag: + - '"0x8DB8E1370293088"' + last-modified: + - Wed, 26 Jul 2023 20:03:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:56 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3342' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:54 GMT + etag: + - '"0x8DB8E1370293088"' + last-modified: + - Wed, 26 Jul 2023 20:03:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '11' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:59 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3627' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:56 GMT + etag: + - '"0x8DB8E13717C3302"' + last-modified: + - Wed, 26 Jul 2023 20:03:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:59 GMT + x-ms-range: + - bytes=3342-7437 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: " ---> Running in 78e1c0855855\nRemoving intermediate container 78e1c0855855\n + ---> bb07a16d48cb\nStep 11/17 : RUN dotnet build \"TestWebApp202305.csproj\" + -c Release -o /app/build\n ---> Running in 824781cef19a\nMSBuild version 17.3.2+561848881 + for .NET\n Determining projects to restore...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '285' + content-range: + - bytes 3342-3626/3627 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:56 GMT + etag: + - '"0x8DB8E13717C3302"' + last-modified: + - Wed, 26 Jul 2023 20:03:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:59 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3627' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:56 GMT + etag: + - '"0x8DB8E13717C3302"' + last-modified: + - Wed, 26 Jul 2023 20:03:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:01 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3627' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:59 GMT + etag: + - '"0x8DB8E13717C3302"' + last-modified: + - Wed, 26 Jul 2023 20:03:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:04 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4177' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:01 GMT + etag: + - '"0x8DB8E1375363EB6"' + last-modified: + - Wed, 26 Jul 2023 20:04:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:04 GMT + x-ms-range: + - bytes=3627-7722 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: " All projects are up-to-date for restore.\n TestWebApp202305 -> /app/build/TestWebApp202305.dll\r\n\nBuild + succeeded.\n 0 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:04.89\nRemoving + intermediate container 824781cef19a\n ---> e5d1a7061ce1\nStep 12/17 : FROM + build AS publish\n ---> e5d1a7061ce1\nStep 13/17 : RUN dotnet publish \"TestWebApp202305.csproj\" + -c Release -o /app/publish /p:UseAppHost=false\n ---> Running in 1ca219f45334\nMSBuild + version 17.3.2+561848881 for .NET\n Determining projects to restore...\n + \ All projects are up-to-date for restore.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '550' + content-range: + - bytes 3627-4176/4177 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:02 GMT + etag: + - '"0x8DB8E1375363EB6"' + last-modified: + - Wed, 26 Jul 2023 20:04:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:04 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4177' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:02 GMT + etag: + - '"0x8DB8E1375363EB6"' + last-modified: + - Wed, 26 Jul 2023 20:04:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:06 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4564' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:04 GMT + etag: + - '"0x8DB8E1376B68C1F"' + last-modified: + - Wed, 26 Jul 2023 20:04:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:06 GMT + x-ms-range: + - bytes=4177-8272 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: " TestWebApp202305 -> /src/bin/Release/net6.0/TestWebApp202305.dll\n + \ TestWebApp202305 -> /app/publish/\nRemoving intermediate container 1ca219f45334\n + ---> 968372bbb7cb\nStep 14/17 : FROM base AS final\n ---> 5f8ee7b8a3b6\nStep + 15/17 : WORKDIR /app\n ---> Running in 8a81f0cc4c00\nRemoving intermediate + container 8a81f0cc4c00\n ---> 6a3c3e61443b\nStep 16/17 : COPY --from=publish + /app/publish .\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '387' + content-range: + - bytes 4177-4563/4564 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:04 GMT + etag: + - '"0x8DB8E1376B68C1F"' + last-modified: + - Wed, 26 Jul 2023 20:04:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:06 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4564' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:04 GMT + etag: + - '"0x8DB8E1376B68C1F"' + last-modified: + - Wed, 26 Jul 2023 20:04:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '15' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:09 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4871' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:07 GMT + etag: + - '"0x8DB8E1377EA243E"' + last-modified: + - Wed, 26 Jul 2023 20:04:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:09 GMT + x-ms-range: + - bytes=4564-8659 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: " ---> 23e2839530ed\nStep 17/17 : ENTRYPOINT [\"dotnet\", \"TestWebApp202305.dll\"]\n + ---> Running in 67ae9191cbf4\nRemoving intermediate container 67ae9191cbf4\n + ---> fab1a7d1abdf\nSuccessfully built fab1a7d1abdf\nSuccessfully tagged containerapp000004.azurecr.io/containerapp000003:20230726130322469158\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '295' + content-range: + - bytes 4564-4870/4871 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:07 GMT + etag: + - '"0x8DB8E1377EA243E"' + last-modified: + - Wed, 26 Jul 2023 20:04:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:09 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4871' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:07 GMT + etag: + - '"0x8DB8E1377EA243E"' + last-modified: + - Wed, 26 Jul 2023 20:04:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:12 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5485' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:10 GMT + etag: + - '"0x8DB8E13792A8BCD"' + last-modified: + - Wed, 26 Jul 2023 20:04:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:12 GMT + x-ms-range: + - bytes=4871-8966 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "2023/07/26 20:04:07 Successfully executed container: build\n2023/07/26 + 20:04:07 Executing step ID: push. Timeout(sec): 3600, Working directory: '', + Network: ''\n2023/07/26 20:04:07 Pushing image: containerapp000004.azurecr.io/containerapp000003:20230726130322469158, + attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/containerapp000003]\n95ded0b089fb: + Preparing\n63c6d41e5faa: Preparing\n5ff9c7f01178: Preparing\nd20574564839: + Preparing\nd6b2f81086e4: Preparing\n333872f929fb: Preparing\n4b3ba104e9a8: + Preparing\n333872f929fb: Waiting\n4b3ba104e9a8: Waiting\n63c6d41e5faa: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '590' + content-range: + - bytes 4871-5484/5485 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:10 GMT + etag: + - '"0x8DB8E13792A8BCD"' + last-modified: + - Wed, 26 Jul 2023 20:04:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:12 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5485' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:10 GMT + etag: + - '"0x8DB8E13792A8BCD"' + last-modified: + - Wed, 26 Jul 2023 20:04:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:14 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5485' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:12 GMT + etag: + - '"0x8DB8E13792A8BCD"' + last-modified: + - Wed, 26 Jul 2023 20:04:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:17 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5528' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:15 GMT + etag: + - '"0x8DB8E137C5C4190"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:17 GMT + x-ms-range: + - bytes=5485-9580 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "95ded0b089fb: Pushed\n5ff9c7f01178: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '43' + content-range: + - bytes 5485-5527/5528 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:15 GMT + etag: + - '"0x8DB8E137C5C4190"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:17 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5528' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:15 GMT + etag: + - '"0x8DB8E137C5C4190"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '18' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:20 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5614' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:18 GMT + etag: + - '"0x8DB8E137F115F67"' + last-modified: + - Wed, 26 Jul 2023 20:04:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:20 GMT + x-ms-range: + - bytes=5528-9623 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "d20574564839: Pushed\nd6b2f81086e4: Pushed\n333872f929fb: Pushed\r\n4b3ba104e9a8: + Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '86' + content-range: + - bytes 5528-5613/5614 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:18 GMT + etag: + - '"0x8DB8E137F115F67"' + last-modified: + - Wed, 26 Jul 2023 20:04:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:20 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5614' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:18 GMT + etag: + - '"0x8DB8E137F115F67"' + last-modified: + - Wed, 26 Jul 2023 20:04:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '6883' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:21 GMT + etag: + - '"0x8DB8E1380BF6CF1"' + last-modified: + - Wed, 26 Jul 2023 20:04:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '22' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:23 GMT + x-ms-range: + - bytes=5614-9709 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: "20230726130322469158: digest: sha256:1c8cc44ae0b630bc170939dacf897ad95eb8c4503f30ea30e82ef88506288b2a + size: 1786\n2023/07/26 20:04:20 Successfully pushed image: containerapp000004.azurecr.io/containerapp000003:20230726130322469158\n2023/07/26 + 20:04:20 Step ID: build marked as successful (elapsed time in seconds: 40.020003)\n2023/07/26 + 20:04:20 Populating digests for step ID: build...\n2023/07/26 20:04:21 Successfully + populated digests for step ID: build\n2023/07/26 20:04:21 Step ID: push marked + as successful (elapsed time in seconds: 12.860616)\n2023/07/26 20:04:21 The + following dependencies were found:\n2023/07/26 20:04:21 \n- image:\n registry: + containerapp000004.azurecr.io\n repository: containerapp000003\n tag: + \"20230726130322469158\"\n digest: sha256:1c8cc44ae0b630bc170939dacf897ad95eb8c4503f30ea30e82ef88506288b2a\n + \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: dotnet/aspnet\n + \ tag: \"6.0\"\n digest: sha256:66d81019d009890bd118cf5a569b6b38c5a0d161cc4947009aeddaa7db4bb121\n + \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: + dotnet/sdk\n tag: \"6.0\"\n digest: sha256:894872a219bfa6d186453ce5cdfac8269f4b45b410dd356a5dd9df8ad48f4d83\n + \ git: {}\n\r\nRun ID: ca1 was successful after 58s\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1245' + content-range: + - bytes 5614-6882/6883 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:21 GMT + etag: + - '"0x8DB8E1380BF6CF1"' + last-modified: + - Wed, 26 Jul 2023 20:04:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '22' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged150.blob.core.windows.net/d9902386b6174fc5bd2339890aed220c-2jurc70zia/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A23Z&sr=b&sp=r&sig=No8MM8vGky53nEyr2%2Fc9xhhtxAOsASdYx9cs5ycWoNg%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '6883' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:21 GMT + etag: + - '"0x8DB8E1380BF6CF1"' + last-modified: + - Wed, 26 Jul 2023 20:04:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '22' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:24 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", + "value": "HTrLDo49fMHqklQiFJqGbMZdtTkcq4ktKNZUlrKbEq+ACRBKKzMG"}], "activeRevisionsMode": + "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": + "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", + "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], + "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "containerapp000004.azurecr.io/containerapp000003:20230726130322469158", "name": + "containerapp000003", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1225' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:04:22.8233295Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:04:22.8233295Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["40.74.23.10"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicemoss-46ad9186.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230726130322469158","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b84d0879-caa2-4dc0-ac04-c4247c0babeb?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '2398' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '699' + x-msedge-ref: + - 'Ref A: 917D755FDE164261AFEE0D489E3317D9 Ref B: CO6AA3150220051 Ref C: 2023-07-26T20:04:22Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b84d0879-caa2-4dc0-ac04-c4247c0babeb?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b84d0879-caa2-4dc0-ac04-c4247c0babeb","name":"b84d0879-caa2-4dc0-ac04-c4247c0babeb","status":"InProgress","startTime":"2023-07-26T20:04:23.7671856"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0989D6C1C7D84E4DAD4816169AC5C346 Ref B: CO6AA3150217039 Ref C: 2023-07-26T20:04:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b84d0879-caa2-4dc0-ac04-c4247c0babeb?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b84d0879-caa2-4dc0-ac04-c4247c0babeb","name":"b84d0879-caa2-4dc0-ac04-c4247c0babeb","status":"InProgress","startTime":"2023-07-26T20:04:23.7671856"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: DD0F1ECBC2B4407381A0ECA546B27FDD Ref B: CO6AA3150218029 Ref C: 2023-07-26T20:04:29Z' + 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 --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b84d0879-caa2-4dc0-ac04-c4247c0babeb?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/b84d0879-caa2-4dc0-ac04-c4247c0babeb","name":"b84d0879-caa2-4dc0-ac04-c4247c0babeb","status":"Succeeded","startTime":"2023-07-26T20:04:23.7671856"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 98EBD6EA47B142CD9F29D670CABA4B99 Ref B: CO6AA3150220011 Ref C: 2023-07-26T20:04:32Z' + 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 --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:04:22.8233295","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:04:22.8233295"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["40.74.23.10"],"latestRevisionName":"containerapp000003--e084fvv","latestReadyRevisionName":"containerapp000003--e084fvv","latestRevisionFqdn":"containerapp000003--e084fvv.nicemoss-46ad9186.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicemoss-46ad9186.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230726130322469158","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2527' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 69878620B7BF4F0AA41F44FCA05F3116 Ref B: CO6AA3150217049 Ref C: 2023-07-26T20:04:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: FE10EF2378EF42B8B8C5D7773B0B20AD Ref B: CO6AA3150218035 Ref C: 2023-07-26T20:04:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:04:22.8233295","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:04:22.8233295"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["40.74.23.10"],"latestRevisionName":"containerapp000003--e084fvv","latestReadyRevisionName":"containerapp000003--e084fvv","latestRevisionFqdn":"containerapp000003--e084fvv.nicemoss-46ad9186.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicemoss-46ad9186.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230726130322469158","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2527' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 584DB5C63DDD444C867600F10628F4BA Ref B: CO6AA3150219035 Ref C: 2023-07-26T20:04:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml new file mode 100644 index 00000000000..ddfb3641ce1 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_acr_task_e2e.yaml @@ -0,0 +1,12644 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgmv2zz2idqv22c2k6tv4jn?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"fe140acf-6138-4b1b-a24d-a04f01f57c52","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T20:02:08.0225051Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T20:02:08.0225051Z","modifiedDate":"2023-07-26T20:02:08.0225051Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgmv2zz2idqv22c2k6tv4jn","name":"workspace-clitestrgmv2zz2idqv22c2k6tv4jn","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgmv2zz2idqv22c2k6tv4jn?api-version=2021-12-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgmv2zz2idqv22c2k6tv4jn?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"fe140acf-6138-4b1b-a24d-a04f01f57c52","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T20:02:08.0225051Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T20:02:08.0225051Z","modifiedDate":"2023-07-26T20:02:08.0225051Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgmv2zz2idqv22c2k6tv4jn","name":"workspace-clitestrgmv2zz2idqv22c2k6tv4jn","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgmv2zz2idqv22c2k6tv4jn/sharedKeys?api-version=2020-08-01 + response: + body: + string: '{"primarySharedKey":"xDeIv1+6rEhEyINzaNyk8u+vz90e6uvvhY/UO57UzW71gfBHUAWvgGbbAMjC2dFglI+7JCMvH/eKawl7QE0rlA==","secondarySharedKey":"fi1vlTuqZ4pIor/RuKCOA+l5zMqkFe+3K+ZxagavabYAeoGDF+Y/rvU2DwoXKaCtUChUKB6ZFdSY0PDIeZVtSg=="}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + cache-control: + - no-cache + content-length: + - '223' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: C58E3C28BD16478F9ADB6DF47F1A3517 Ref B: CO6AA3150220023 Ref C: 2023-07-26T20:02:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "fe140acf-6138-4b1b-a24d-a04f01f57c52", + "sharedKey": "xDeIv1+6rEhEyINzaNyk8u+vz90e6uvvhY/UO57UzW71gfBHUAWvgGbbAMjC2dFglI+7JCMvH/eKawl7QE0rlA=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '450' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6500962Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6500962Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackdesert-2c78c388.westeurope.azurecontainerapps.io","staticIp":"20.238.191.29","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fe140acf-6138-4b1b-a24d-a04f01f57c52","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-msedge-ref: + - 'Ref A: 7A5EA6DB725D42179ACE11CCDC4E9016 Ref B: CO6AA3150218019 Ref C: 2023-07-26T20:02:09Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 5A3D2FE067324C9EA147117BDE0C09F5 Ref B: CO6AA3150217047 Ref C: 2023-07-26T20:02:15Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B6B0CB0FAA1B4DD9AF195AA2B4CD242B Ref B: CO6AA3150220009 Ref C: 2023-07-26T20:02:18Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E8B310F5BB86416EA3AF0933769FFC03 Ref B: CO6AA3150220035 Ref C: 2023-07-26T20:02:22Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 25B833719E8A4799A16A21B3B41291C8 Ref B: CO6AA3150220011 Ref C: 2023-07-26T20:02:25Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: CC75739E986C4622971EBE6EAD76B72A Ref B: CO6AA3150217029 Ref C: 2023-07-26T20:02:28Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0D5CD29133AA4DCDBB6071BDF066B3C7 Ref B: CO6AA3150218035 Ref C: 2023-07-26T20:02:31Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 5F1C377151344F559A614C96D8EEF419 Ref B: CO6AA3150217009 Ref C: 2023-07-26T20:02:34Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 83AB3284DDD1476297DF715730589BC6 Ref B: CO6AA3150220021 Ref C: 2023-07-26T20:02:37Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 3BCAD41A2CD84345AC4EB49D18D443FC Ref B: CO6AA3150220047 Ref C: 2023-07-26T20:02:40Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 67AFD5413A1F4794A10D4C18DDBAA1B6 Ref B: CO6AA3150219019 Ref C: 2023-07-26T20:02:43Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 92236EB8BC954AF09DF7EBF4C94B4AF2 Ref B: CO6AA3150219029 Ref C: 2023-07-26T20:02:45Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: A334FAFB69AE416DB5BDA742DCAEC97B Ref B: CO6AA3150219025 Ref C: 2023-07-26T20:02:48Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: BFF23D6888A34398B36ECF80FACD628D Ref B: CO6AA3150217025 Ref C: 2023-07-26T20:02:51Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: F82F4943E28A4C2997AD45BE9CBCA407 Ref B: CO6AA3150218011 Ref C: 2023-07-26T20:02:54Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"InProgress","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 7CE35631D4454132A4CD918C415FECAC Ref B: CO6AA3150219049 Ref C: 2023-07-26T20:02:57Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/19e6348f-ec49-48b4-860f-0ce98959540e","name":"19e6348f-ec49-48b4-860f-0ce98959540e","status":"Succeeded","startTime":"2023-07-26T20:02:15.6277334"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: A7E5F22B2811462DA5B5E4E22F0D7A01 Ref B: CO6AA3150220023 Ref C: 2023-07-26T20:03:00Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6500962","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6500962"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackdesert-2c78c388.westeurope.azurecontainerapps.io","staticIp":"20.238.191.29","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fe140acf-6138-4b1b-a24d-a04f01f57c52","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 873133B640524D6BB420986E4E69B24E Ref B: CO6AA3150220023 Ref C: 2023-07-26T20:03:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true, "anonymousPullEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:02.9636836Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6dc87b33-2bef-11ee-ab96-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1380' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 96F3C121B79F4C9BA0D78A1EC18AF991 Ref B: CO6AA3150217009 Ref C: 2023-07-26T20:03:02Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6dc87b33-2bef-11ee-ab96-bce92fa43675?api-version=2022-02-01-preview + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6dc87b33-2bef-11ee-ab96-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 8E2B2AB0245F47109947234D05138DA4 Ref B: CO6AA3150217009 Ref C: 2023-07-26T20:03:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:02.9636836Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 1983668A0B0742CF9409006D605FD137 Ref B: CO6AA3150217009 Ref C: 2023-07-26T20:03:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:02.9636836Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview + response: + body: + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"hKBDym3Bc2ELQvCdLXdLdI8YR2P19HlD5aiXrbRcww+ACRDEYN56"},{"name":"password2","value":"UdDfD8Ol6R/a/Jh7WHKvQlIhWpJWIa073fZywBgKqA+ACRBc6E6e"}]}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '214' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6500962","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6500962"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackdesert-2c78c388.westeurope.azurecontainerapps.io","staticIp":"20.238.191.29","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fe140acf-6138-4b1b-a24d-a04f01f57c52","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6500962","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6500962"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackdesert-2c78c388.westeurope.azurecontainerapps.io","staticIp":"20.238.191.29","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fe140acf-6138-4b1b-a24d-a04f01f57c52","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 20:03:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.6500962","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.6500962"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackdesert-2c78c388.westeurope.azurecontainerapps.io","staticIp":"20.238.191.29","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fe140acf-6138-4b1b-a24d-a04f01f57c52","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1540' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03: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 --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '234' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ojxkb2kfwx4jux6ao4y3tbamxrer6jnnfpvr3tuggpiizds2xdojcb6rrqfhkldg/providers/Microsoft.ContainerRegistry/registries/containerapp4sm3kmfpl4gh","name":"containerapp4sm3kmfpl4gh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5o46kqig5lbslefzxqlx7zi4bvn2dllfwaoj5ikp4ny2uy73ssekdcawdp6rhw3mq/providers/Microsoft.ContainerRegistry/registries/containerappseirdstg4xa4","name":"containerappseirdstg4xa4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtfu236h5uocpfn2rarrdfgbibb3nj4ld4pbhrqck63u63sh35xpjcj6cajed2jwd4/providers/Microsoft.ContainerRegistry/registries/containerappbkztncclixt6","name":"containerappbkztncclixt6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6518' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:02.9636836Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - '2022-12-01' + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 20:03:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list + response: + body: + string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n + \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n + \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n + \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n + \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n + \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n + \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n + \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n + \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n + \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n + \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n + \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n + \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n + \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n + \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n + \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n + \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n + \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n + \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n + \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n + \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n + \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n + \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n + \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n + \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n + \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n + \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n + \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n + \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n + \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n + \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n + \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n + \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n + \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n + \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n + \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n + \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n + \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n + \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n + \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n + \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n + \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n + \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n + \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n + \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n + \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n + \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n + \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n + \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n + \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n + \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n + \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n + \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n + \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n + \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n + \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n + \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n + \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ ]\n}" + headers: + cache-control: + - max-age=300 + content-length: + - '5624' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:18 GMT + etag: + - '0x8DB8E113417DCF6' + last-modified: + - Wed, 26 Jul 2023 19:47:54 GMT + x-cache: + - TCP_MISS + x-mcr-privacy: + - https://privacy.microsoft.com/en-us/privacystatement + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + x-msedge-ref: + - 'Ref A: B5BD6CF443374EDDB7869E7B315476D7 Ref B: CO1EDGE1811 Ref C: 2023-07-26T20:03:18Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list + response: + body: + string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n + \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n + \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n + \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n + \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n + \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n + \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n + \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n + \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n + \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n + \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n + \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n + \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n + \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n + \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n + \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n + \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n + \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n + \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n + \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n + \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n + \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n + \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n + \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n + \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n + \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n + \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n + \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n + \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n + \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n + \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n + \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n + \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n + \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n + \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n + \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n + \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n + \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n + \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n + \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n + \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n + \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n + \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n + \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n + \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n + \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n + \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n + \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n + \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n + \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n + \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n + \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n + \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n + \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n + \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n + \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n + \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n + \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ ]\n}" + headers: + cache-control: + - max-age=300 + content-length: + - '5624' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:21 GMT + etag: + - '0x8DB8E113417DCF6' + last-modified: + - Wed, 26 Jul 2023 19:47:54 GMT + x-cache: + - TCP_HIT + x-mcr-privacy: + - https://privacy.microsoft.com/en-us/privacystatement + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + x-msedge-ref: + - 'Ref A: A557D42152D240A28F0E79529BB23027 Ref B: WSTEDGE0916 Ref C: 2023-07-26T20:03:21Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ojxkb2kfwx4jux6ao4y3tbamxrer6jnnfpvr3tuggpiizds2xdojcb6rrqfhkldg/providers/Microsoft.ContainerRegistry/registries/containerapp4sm3kmfpl4gh","name":"containerapp4sm3kmfpl4gh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5o46kqig5lbslefzxqlx7zi4bvn2dllfwaoj5ikp4ny2uy73ssekdcawdp6rhw3mq/providers/Microsoft.ContainerRegistry/registries/containerappseirdstg4xa4","name":"containerappseirdstg4xa4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtfu236h5uocpfn2rarrdfgbibb3nj4ld4pbhrqck63u63sh35xpjcj6cajed2jwd4/providers/Microsoft.ContainerRegistry/registries/containerappbkztncclixt6","name":"containerappbkztncclixt6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6518' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:02.9636836Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"status": "Enabled", "platform": + {"os": "linux", "architecture": "amd64"}, "agentConfiguration": {"cpu": 2}, + "timeout": 3600, "step": {"type": "EncodedTask", "encodedTaskContent": "dmVyc2lvbjogdjEuMS4wCnZlcnNpb246IHYxLjEuMApzdGVwczoKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vb3J5eC9jbGk6ZGViaWFuLWJ1c3Rlci0yMDIzMDIyMi4xIG9yeXggZG9ja2VyZmlsZSAtLWJpbmQtcG9ydCA4MDgwIC0tb3V0cHV0IC4vRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gYnVpbGQ6IC10ICRSZWdpc3RyeS9jb250YWluZXJhcHBnbzZ2c2NwNnY1bno6MjAyMzA3MjYxMzAzMjAyODQwNDMgLWYgRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gcHVzaDogWyIkUmVnaXN0cnkvY29udGFpbmVyYXBwZ282dnNjcDZ2NW56OjIwMjMwNzI2MTMwMzIwMjg0MDQzIl0KICAgIHRpbWVvdXQ6IDE4MDAK", + "values": []}, "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", + "updateTriggerPayloadType": "Default", "status": "Enabled", "name": "defaultBaseimageTriggerName"}}, + "credentials": {}, "isSystemTask": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '940' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2023-07-26T20:03:30.1671339+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnZlcnNpb246IHYxLjEuMApzdGVwczoKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vb3J5eC9jbGk6ZGViaWFuLWJ1c3Rlci0yMDIzMDIyMi4xIG9yeXggZG9ja2VyZmlsZSAtLWJpbmQtcG9ydCA4MDgwIC0tb3V0cHV0IC4vRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gYnVpbGQ6IC10ICRSZWdpc3RyeS9jb250YWluZXJhcHBnbzZ2c2NwNnY1bno6MjAyMzA3MjYxMzAzMjAyODQwNDMgLWYgRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gcHVzaDogWyIkUmVnaXN0cnkvY29udGFpbmVyYXBwZ282dnNjcDZ2NW56OjIwMjMwNzI2MTMwMzIwMjg0MDQzIl0KICAgIHRpbWVvdXQ6IDE4MDAK","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp","name":"cli_build_containerapp","location":"eastus","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:29.8998422+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:29.8998422+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '1491' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ojxkb2kfwx4jux6ao4y3tbamxrer6jnnfpvr3tuggpiizds2xdojcb6rrqfhkldg/providers/Microsoft.ContainerRegistry/registries/containerapp4sm3kmfpl4gh","name":"containerapp4sm3kmfpl4gh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5o46kqig5lbslefzxqlx7zi4bvn2dllfwaoj5ikp4ny2uy73ssekdcawdp6rhw3mq/providers/Microsoft.ContainerRegistry/registries/containerappseirdstg4xa4","name":"containerappseirdstg4xa4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtfu236h5uocpfn2rarrdfgbibb3nj4ld4pbhrqck63u63sh35xpjcj6cajed2jwd4/providers/Microsoft.ContainerRegistry/registries/containerappbkztncclixt6","name":"containerappbkztncclixt6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6518' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:02.9636836Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:10.6700304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listBuildSourceUploadUrl?api-version=2019-06-01-preview + response: + body: + string: '{"uploadUrl":"https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/source/202307260000/776a51ac-8d14-4204-acaa-f369c82541b2.tar.gz?sv=2021-12-02&se=2023-07-26T21%3A03%3A41Z&sr=b&sp=cw&sig=7CaWnBr11GuGGgwlvNIEJaRSdMYSh6zOT18ZSEg8bvk%3D","relativePath":"source/202307260000/776a51ac-8d14-4204-acaa-f369c82541b2.tar.gz"}' + headers: + cache-control: + - no-cache + content-length: + - '351' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: !!binary | + H4sICB58wWQC/2NsaV9zb3VyY2VfYXJjaGl2ZV8wNjdmMDE3ODY3ZDQ0YzY0YWNhZmFlNDA1NTZj + OGNmMS50YXIA7Vzrb9s4Es/nAP0fpt5byO3ash5+JG6S3b022y7Q6wZtD4fD4bBQJNpmI0s6knLi + 7eb+9huSkqO46RO1c23nlw+RhxzO8DEcciTS7bm9n06iiycsSpjY2Qg8i7f997ywf/Ws6b7fHwQ7 + cLGzBZRSRQLFf+5KfiEI9mCu+Jwd+sO9obc/2NsP3NFgP+iHwe4O4atHbwsytD2MRqO32/8bz6Ng + 5O3AgOx/43Bp/qf5n+b/bxZRUbiv5Obn/+Fw+Db7D7xhsGb/XhiMdsAj+984FpGAWLBIsWMhcgGH + INh/Si5Y25kpVXSZpkrn3oNdnZNdFIJJ2cxVkeocRaRmzWT9u06L8/yMs5NISHZNkKV3C5NQZ07z + 6fR6tnkuplGm000GniXs4nlequu53J7QNNkz6XVpJZYs35HZpK+KRqPAXFXN2pra68GCs3Ng2ZRn + DCRTZbGrbQef2o5Okk7HVN59lfOs/fvvCRdZNGcdqFLvYTHXGKqykM1hr6xsnY6atG3d207CFis+ + Ta80QoPNs/ZNCaVIWRbnCUvar1F/xbANkjFMolQyuGxyNPvixqLQLBSP2zdXqShPUx6jbk2tnR7W + pdErjUKdqoE7zY6o2jWOVDyDvteHKEtgkovzSCSgcjBDD2ZITZlYFTUps1hxrD92Ygd7UnYgw5re + g9e7YJ7ajeHcxmK1jpeVrPcUicm6yDfLRVbsNxyTMbZkB/IsXUIh8gVPeDatSuUZYH+xNC/mLFPI + hGW4lsOdY4tGU6YHlRD1rwfX87Ar+3O1ZlM9UFiGIwAODw/BaRTuwI+6IBjD60usmNFP6L4WoGas + 0qdAEZUE3Zel1NWrHuHPP2HgefdqFSwzitOcTt1g8zwpU+biiMiF0kaPaj2gVcFXBVr/0/qf1v/f + Lk55tvEQ0CfEf0ZDn+I/NP9T/9P8T9j0/H9+fn6b8Z/QGw3X4z+DcEjxn23gu7u4NRc9PQxwrwlZ + njDcKd+/vwv34W9m/4e72kJvD7OY404R6b1mkOQqlOL2kFLHWxJ2Wk6byYbg3Gs782UVYcDcY8nE + 4irkowNO6wEoExep9HmMW3C9FYWJyOeA6nKRZ3o/bCIHUuWC6V34cRXBuFLVMB1i5cQ8Svkf7AR/ + t3H/HutsWI578tvzl3pP7ITYdU4zUqNZdWQH/zU0eWhCDPDk5csTsHVoSLMElKf1d2004oWhtbHY + RilPuVQsgzyrYgksMXJ0fAGiNIWMqfNcnGGdFBOTKF41fyUyNfztSreKmGf1Nl6XY6Ig1xMtF8+m + JsPT+ldDr2d1O0Fkmw4VyPE5K+enTHSwpQUyILewkaVKqzqMstbOiyi1QZRGT5hQ36+ZSeyArwMR + mIFPoM3ls+iZrZLlMsENHXbCxuEFMxTBVCkyLDDVAYzLmtcUfnQIXoPT0KziTVZNXvFWNFOXB7uX + q3Y4XuixZdsLO3SC9W30OLRMM7eA6WzrbVA1fdvksfpoFc1PVy5lrDv4ro7r2PKdWmc1E/m5DeGs + FNQthxaaYMupZcHySdWOmt12hmN4fwTnBNsIHPjB5DDEMRJ17ppYB4xsFAxkwWI+4XFVTytZwjlX + M7QzjpafLqGKWEnklJgSz+qa6FhjrXkcSRR9/PPDh8cvnLEhITHPZK6DSKY1TCV+QFUqG5fAUrZA + +8DOFXzBU4ZCHBOW0liZ6AVXbX9FPkWTOntwTeajR89/ffb3F8fvk8slWhayJ0s9U5SSfYywhE2i + MlW1iDd66sNHzsoG3zp6VnbZvjKeKEn0tFLZsv5VhadvGiE28w0jpKhHiM5Rj5CiHiGa6NbWYSbt + trPSRU9MOpOWpIOEtEKk+B/t/2j/R/hiUUTxGXp280rxlvZ/njb2Nfsf4D/a/20Bem3R0svr1hha + zb1Zq6NTcKEhcUGiEz0X/yxVr9Vw0YZUJUpmSDIWvFASSXYx2NLNqjSf3lKC26sCDS29UjIczW3l + Fdu1bwE0+399t+/2jVzDhCsSQw7cobtfk9kruSL6K6Kti0nou34jpfFlQyVi6IZ1ov3MoKLvI1O1 + tiP/T/6f/D/hK/P/5kuezb4C/Oj3f77XH47o/R/N/9T/NP8TtjD/S7VMmZwxpmRvI/b/cfN/6PVD + mv9p/qf+p/mfsOX53zy7sZSf0/7fFf/zB6M1+++PAor/bQWnebI0sbciSvRhhjEMvOJCv/yb5Jka + g98vLqD1tIx5EsFjEWUJa3XgCUsXTPE46sDPgut3+DLKZFcywSfmDXpkyozzNBdj+M7z/jr65Rd6 + YUj+n/w/+X/C/xGq848blfEJ8b9BGND+j+Z/6n+a/wlbmP/Nse1NXQTxvv1f6A/W7D/wR/T9/1bw + Ybc6iPrmhPp2AHuC316NcB8eH7+EWT5n5sy5qz9ltQz2DLu+FuCdp/abJ9DtrQ0deA2Kq5SNwak+ + 53fg8q3n0q00OppO/p/sn/w/4eP9v7mW5fb8f7ju/4OA/P+X5f/NCDJHXng2/bQ1gMQ1QNvBpyLP + EnsCKdIJeSli5pD3J/9P9k/+n/BZ5399Od2Gb4D5hPhv2B9S/Jfmf+p/mv8Jm5//7WF+dkv7Pz8I + Kf57SziY+UcH3x/WNzzA90cHPSTtHswCQ68urLC3hprEABNxE3g9NT4ziZpO0wbt/8j/k/8nfDn+ + 377+vS3/H4bDN/z/MCD/vxX/f/fRbw9f/vPkGGZqnmq/b/4BHMzQIxyZI/EH5lWscfjmybh6S7Pp + Kc/OQLD00Ln6jtyBmWCTQ+fmT8sd6BkhvVrKgf4QuSquWpJcydILEpNSHP2DpbF+06xyuJ6nsOXZ + YpDFVIPs+8vw/+Gb/t8n/78V/z9a+f99r+/5e77nhuEo7O+R8XwLUPNitBxmhZdMNybjff5/gMa+ + Zv8BbgnI/29j/Wcv+BnDwnd917uzKxUr5PgOOtMuxPNkDPNYuHMei1zmE+Wi8+3lYnnRi1M+Ttgp + j7LuKbYhE93AC0IvCALXB50Dkjw+Y2LC0UF3u/rKwK65ZXDP2/OQkJeqKBW4vUdX2dw79gpMnI8w + eQzB3p7nWVVOS56iMl0Ff3nOplwqsezFeaYinjERFcU0Hy5kXAwXg+yPsdFkFAz90Avxea/v9UPo + TuDDRBWlnI3hX61PFNT691rRvimZphoCgUAgEAgEAoFAIBAIBAKBQCAQCAQCgUAgEAgEAoFAIBAI + BMJnwP8A9/PzpwCgAAA= + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '2465' + Content-Type: + - application/octet-stream + User-Agent: + - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 26 Jul 2023 20:03:43 GMT + x-ms-version: + - '2022-11-02' + method: PUT + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/source/202307260000/776a51ac-8d14-4204-acaa-f369c82541b2.tar.gz?sv=2021-12-02&se=2023-07-26T21%3A03%3A41Z&sr=b&sp=cw&sig=7CaWnBr11GuGGgwlvNIEJaRSdMYSh6zOT18ZSEg8bvk%3D + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - 4ZnHYvPN34Tv/gUKij0+8A== + date: + - Wed, 26 Jul 2023 20:03:41 GMT + etag: + - '"0x8DB8E1369138B98"' + last-modified: + - Wed, 26 Jul 2023 20:03:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - m1cSU9lRGy0= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2022-11-02' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp/listDetails?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2023-07-26T20:03:30.1671339+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnZlcnNpb246IHYxLjEuMApzdGVwczoKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vb3J5eC9jbGk6ZGViaWFuLWJ1c3Rlci0yMDIzMDIyMi4xIG9yeXggZG9ja2VyZmlsZSAtLWJpbmQtcG9ydCA4MDgwIC0tb3V0cHV0IC4vRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gYnVpbGQ6IC10ICRSZWdpc3RyeS9jb250YWluZXJhcHBnbzZ2c2NwNnY1bno6MjAyMzA3MjYxMzAzMjAyODQwNDMgLWYgRG9ja2VyZmlsZSAuCiAgICB0aW1lb3V0OiAyODgwMAogIC0gcHVzaDogWyIkUmVnaXN0cnkvY29udGFpbmVyYXBwZ282dnNjcDZ2NW56OjIwMjMwNzI2MTMwMzIwMjg0MDQzIl0KICAgIHRpbWVvdXQ6IDE4MDAK","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp","name":"cli_build_containerapp","location":"eastus","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:29.8998422+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:29.8998422+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '1491' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"type": "TaskRunRequest", "isArchiveEnabled": false, "taskId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/tasks/cli_build_containerapp", + "overrideTaskStepProperties": {"contextPath": "source/202307260000/776a51ac-8d14-4204-acaa-f369c82541b2.tar.gz", + "file": "C:\\Users\\snehapar\\AppData\\Local\\Temp\\tmp7y6np0dg", "arguments": + [], "values": []}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '458' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/scheduleRun?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ca1","status":"Queued","lastUpdatedTime":"2023-07-26T20:03:42+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1","name":"ca1","systemData":{"lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:42.8285489+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/runs/ca1/listLogSasUrl?api-version=2019-06-01-preview + response: + body: + string: '{"logLink":"https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D"}' + headers: + cache-control: + - no-cache + content-length: + - '224' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:43 GMT + etag: + - '"0x8DB8E136A38D06F"' + last-modified: + - Wed, 26 Jul 2023 20:03:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '0' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:43 GMT + etag: + - '"0x8DB8E136A38D06F"' + last-modified: + - Wed, 26 Jul 2023 20:03:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '0' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:43 GMT + etag: + - '"0x8DB8E136A38D06F"' + last-modified: + - Wed, 26 Jul 2023 20:03:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '0' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:47 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:45 GMT + etag: + - '"0x8DB8E136ACAEA36"' + last-modified: + - Wed, 26 Jul 2023 20:03:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:47 GMT + x-ms-range: + - bytes=0-4095 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "2023/07/26 20:03:44 Downloading source code...\r\n2023/07/26 20:03:45 + Finished downloading source code\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-range: + - bytes 0-101/102 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:45 GMT + etag: + - '"0x8DB8E136ACAEA36"' + last-modified: + - Wed, 26 Jul 2023 20:03:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:46 GMT + etag: + - '"0x8DB8E136ACAEA36"' + last-modified: + - Wed, 26 Jul 2023 20:03:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:50 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1416' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:48 GMT + etag: + - '"0x8DB8E136C1B09BF"' + last-modified: + - Wed, 26 Jul 2023 20:03:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:51 GMT + x-ms-range: + - bytes=102-4197 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "2023/07/26 20:03:45 Alias support enabled for version >= 1.1.0, please + see https://aka.ms/acr/tasks/task-aliases for more information.\n2023/07/26 + 20:03:45 Creating Docker network: acb_default_network, driver: 'bridge'\n2023/07/26 + 20:03:45 Successfully set up Docker network: acb_default_network\n2023/07/26 + 20:03:45 Setting up Docker configuration...\n2023/07/26 20:03:46 Successfully + set up Docker configuration\n2023/07/26 20:03:46 Logging in to registry: containerapp000004.azurecr.io\n2023/07/26 + 20:03:46 Successfully logged into containerapp000004.azurecr.io\n2023/07/26 + 20:03:46 Executing step ID: acb_step_0. Timeout(sec): 28800, Working directory: + '', Network: 'acb_default_network'\n2023/07/26 20:03:46 Launching container + with name: acb_step_0\nUnable to find image 'mcr.microsoft.com/oryx/cli:debian-buster-20230222.1' + locally\ndebian-buster-20230222.1: Pulling from oryx/cli\nb2404786f3fe: Pulling + fs layer\ne97ef50ee5a8: Pulling fs layer\ndfb1477a1a0e: Pulling fs layer\n69fefe447a70: + Pulling fs layer\n75c028bd406f: Pulling fs layer\n69285aafba30: Pulling fs + layer\n5ec5a733efd1: Pulling fs layer\n940e5351b949: Pulling fs layer\n69fefe447a70: + Waiting\n75c028bd406f: Waiting\n69285aafba30: Waiting\n5ec5a733efd1: Waiting\n940e5351b949: + Waiting\ne97ef50ee5a8: Verifying Checksum\ne97ef50ee5a8: Download complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1302' + content-range: + - bytes 102-1415/1416 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:49 GMT + etag: + - '"0x8DB8E136C1B09BF"' + last-modified: + - Wed, 26 Jul 2023 20:03:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:51 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1416' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:49 GMT + etag: + - '"0x8DB8E136C1B09BF"' + last-modified: + - Wed, 26 Jul 2023 20:03:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '3' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1900' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:51 GMT + etag: + - '"0x8DB8E136E6740D6"' + last-modified: + - Wed, 26 Jul 2023 20:03:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '4' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:53 GMT + x-ms-range: + - bytes=1416-5511 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "dfb1477a1a0e: Verifying Checksum\ndfb1477a1a0e: Download complete\n75c028bd406f: + Verifying Checksum\n75c028bd406f: Download complete\n69fefe447a70: Verifying + Checksum\n69fefe447a70: Download complete\n69285aafba30: Verifying Checksum\n69285aafba30: + Download complete\n940e5351b949: Verifying Checksum\n940e5351b949: Download + complete\n5ec5a733efd1: Verifying Checksum\n5ec5a733efd1: Download complete\nb2404786f3fe: + Verifying Checksum\nb2404786f3fe: Download complete\nb2404786f3fe: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '484' + content-range: + - bytes 1416-1899/1900 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:51 GMT + etag: + - '"0x8DB8E136E6740D6"' + last-modified: + - Wed, 26 Jul 2023 20:03:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '4' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1900' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:51 GMT + etag: + - '"0x8DB8E136E6740D6"' + last-modified: + - Wed, 26 Jul 2023 20:03:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '4' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:56 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1985' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:53 GMT + etag: + - '"0x8DB8E136FCD0837"' + last-modified: + - Wed, 26 Jul 2023 20:03:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:56 GMT + x-ms-range: + - bytes=1900-5995 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "e97ef50ee5a8: Pull complete\ndfb1477a1a0e: Pull complete\n69fefe447a70: + Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '85' + content-range: + - bytes 1900-1984/1985 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:54 GMT + etag: + - '"0x8DB8E136FCD0837"' + last-modified: + - Wed, 26 Jul 2023 20:03:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:56 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1985' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:54 GMT + etag: + - '"0x8DB8E136FCD0837"' + last-modified: + - Wed, 26 Jul 2023 20:03:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:03:58 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1985' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:56 GMT + etag: + - '"0x8DB8E136FCD0837"' + last-modified: + - Wed, 26 Jul 2023 20:03:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '5' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:01 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2312' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:59 GMT + etag: + - '"0x8DB8E137261AFFA"' + last-modified: + - Wed, 26 Jul 2023 20:03:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:01 GMT + x-ms-range: + - bytes=1985-6080 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "75c028bd406f: Pull complete\n69285aafba30: Pull complete\n5ec5a733efd1: + Pull complete\n940e5351b949: Pull complete\nDigest: sha256:cbfa4beec24c74057550bb121cb6ea0820af23416a90d1f52f2b01234d5fe934\nStatus: + Downloaded newer image for mcr.microsoft.com/oryx/cli:debian-buster-20230222.1\nDockerfile + written to '/workspace/Dockerfile'.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '327' + content-range: + - bytes 1985-2311/2312 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:59 GMT + etag: + - '"0x8DB8E137261AFFA"' + last-modified: + - Wed, 26 Jul 2023 20:03:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:01 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2312' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:59 GMT + etag: + - '"0x8DB8E137261AFFA"' + last-modified: + - Wed, 26 Jul 2023 20:03:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '6' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:03 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2668' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:01 GMT + etag: + - '"0x8DB8E1373BC2E3B"' + last-modified: + - Wed, 26 Jul 2023 20:04:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:03 GMT + x-ms-range: + - bytes=2312-6407 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "2023/07/26 20:03:59 Successfully executed container: acb_step_0\n2023/07/26 + 20:03:59 Executing step ID: acb_step_1. Timeout(sec): 28800, Working directory: + '', Network: 'acb_default_network'\n2023/07/26 20:03:59 Scanning for dependencies...\n2023/07/26 + 20:04:00 Successfully scanned dependencies\n2023/07/26 20:04:00 Launching + container with name: acb_step_1\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '356' + content-range: + - bytes 2312-2667/2668 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:01 GMT + etag: + - '"0x8DB8E1373BC2E3B"' + last-modified: + - Wed, 26 Jul 2023 20:04:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:03 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2668' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:01 GMT + etag: + - '"0x8DB8E1373BC2E3B"' + last-modified: + - Wed, 26 Jul 2023 20:04:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '7' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:06 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3584' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:04 GMT + etag: + - '"0x8DB8E1375D1F373"' + last-modified: + - Wed, 26 Jul 2023 20:04:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:06 GMT + x-ms-range: + - bytes=2668-6763 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Sending build context to Docker daemon 16.38kB\r\r\nStep 1/10 : ARG + RUNTIME=node:18\nStep 2/10 : FROM mcr.microsoft.com/oryx/cli:debian-bullseye-stable + as build\ndebian-bullseye-stable: Pulling from oryx/cli\n34df401c391c: Pulling + fs layer\n6fdd0e5b72cc: Pulling fs layer\n4f4fb700ef54: Pulling fs layer\n27afee16150d: + Pulling fs layer\n511c1db5fe39: Pulling fs layer\naef5a7f065ac: Pulling fs + layer\n379c662bf2c6: Pulling fs layer\n53047a51d46f: Pulling fs layer\n27afee16150d: + Waiting\n511c1db5fe39: Waiting\naef5a7f065ac: Waiting\n379c662bf2c6: Waiting\n53047a51d46f: + Waiting\n4f4fb700ef54: Verifying Checksum\n4f4fb700ef54: Download complete\n6fdd0e5b72cc: + Verifying Checksum\n6fdd0e5b72cc: Download complete\n27afee16150d: Verifying + Checksum\n27afee16150d: Download complete\n34df401c391c: Verifying Checksum\n34df401c391c: + Download complete\n511c1db5fe39: Verifying Checksum\n511c1db5fe39: Download + complete\n34df401c391c: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '916' + content-range: + - bytes 2668-3583/3584 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:04 GMT + etag: + - '"0x8DB8E1375D1F373"' + last-modified: + - Wed, 26 Jul 2023 20:04:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:06 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3584' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:04 GMT + etag: + - '"0x8DB8E1375D1F373"' + last-modified: + - Wed, 26 Jul 2023 20:04:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '8' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:08 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3669' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:06 GMT + etag: + - '"0x8DB8E1377219DBE"' + last-modified: + - Wed, 26 Jul 2023 20:04:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:09 GMT + x-ms-range: + - bytes=3584-7679 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "6fdd0e5b72cc: Pull complete\n4f4fb700ef54: Pull complete\n27afee16150d: + Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '85' + content-range: + - bytes 3584-3668/3669 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:07 GMT + etag: + - '"0x8DB8E1377219DBE"' + last-modified: + - Wed, 26 Jul 2023 20:04:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:09 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3669' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:07 GMT + etag: + - '"0x8DB8E1377219DBE"' + last-modified: + - Wed, 26 Jul 2023 20:04:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '9' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:11 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3916' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:09 GMT + etag: + - '"0x8DB8E1378AE96AE"' + last-modified: + - Wed, 26 Jul 2023 20:04:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:11 GMT + x-ms-range: + - bytes=3669-7764 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "511c1db5fe39: Pull complete\n53047a51d46f: Download complete\naef5a7f065ac: + Verifying Checksum\naef5a7f065ac: Download complete\n379c662bf2c6: Verifying + Checksum\n379c662bf2c6: Download complete\naef5a7f065ac: Pull complete\n379c662bf2c6: + Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '247' + content-range: + - bytes 3669-3915/3916 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:09 GMT + etag: + - '"0x8DB8E1378AE96AE"' + last-modified: + - Wed, 26 Jul 2023 20:04:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:11 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3916' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:09 GMT + etag: + - '"0x8DB8E1378AE96AE"' + last-modified: + - Wed, 26 Jul 2023 20:04:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '10' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:14 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5309' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:12 GMT + etag: + - '"0x8DB8E137B569C95"' + last-modified: + - Wed, 26 Jul 2023 20:04:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:14 GMT + x-ms-range: + - bytes=3916-8011 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "53047a51d46f: Pull complete\nDigest: sha256:9da0586bddf951653dbca665361c8be7bebfeff49d55b66795cf7ca613b8d8ba\nStatus: + Downloaded newer image for mcr.microsoft.com/oryx/cli:debian-bullseye-stable\n + ---> b7cba7f00d1d\nStep 3/10 : WORKDIR /app\n ---> Running in 586a5d1f8423\nRemoving + intermediate container 586a5d1f8423\n ---> 277341f59ab8\nStep 4/10 : COPY + . .\n ---> 92dd4fbed707\nStep 5/10 : RUN oryx build /app --output /output\n + ---> Running in 08da1fb9280a\nOperation performed by Microsoft Oryx, https://github.com/Microsoft/Oryx\nYou + can report issues at https://github.com/Microsoft/Oryx/issues\n\nOryx Version: + 0.2.20230724.1, Commit: e01b34550f75a38df92af2041687cb2b0ad41ec0, ReleaseTagName: + 20230724.1\n\r\nBuild Operation ID: e8f48cbf9baa82db\nOS Type : + bullseye\nImage Type : cli\n\nDetecting platforms...\nDetected following + platforms:\n nodejs: 16.20.1\nVersion '16.20.1' of platform 'nodejs' is not + installed. Generating script to install it...\nDetected the following frameworks: + Express\n\n\nSource directory : /app\nDestination directory: /output\n\nInstalling + common platform dependencies...\nGet:1 http://deb.debian.org/debian bullseye + InRelease [116 kB]\nGet:2 http://deb.debian.org/debian-security bullseye-security + InRelease [48.4 kB]\nGet:3 http://deb.debian.org/debian bullseye-updates InRelease + [44.1 kB]\nGet:4 http://deb.debian.org/debian bullseye/main amd64 Packages + [8183 kB]\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1393' + content-range: + - bytes 3916-5308/5309 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:12 GMT + etag: + - '"0x8DB8E137B569C95"' + last-modified: + - Wed, 26 Jul 2023 20:04:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:14 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5309' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:12 GMT + etag: + - '"0x8DB8E137B569C95"' + last-modified: + - Wed, 26 Jul 2023 20:04:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '12' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:17 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5567' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:15 GMT + etag: + - '"0x8DB8E137C966A86"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:17 GMT + x-ms-range: + - bytes=5309-9404 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Get:5 http://deb.debian.org/debian-security bullseye-security/main + amd64 Packages [252 kB]\nGet:6 http://deb.debian.org/debian bullseye-updates/main + amd64 Packages [14.8 kB]\nFetched 8658 kB in 2s (5446 kB/s)\nReading package + lists...\nReading package lists...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '258' + content-range: + - bytes 5309-5566/5567 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:15 GMT + etag: + - '"0x8DB8E137C966A86"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '5567' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:15 GMT + etag: + - '"0x8DB8E137C966A86"' + last-modified: + - Wed, 26 Jul 2023 20:04:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '13' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:20 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '8896' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:18 GMT + etag: + - '"0x8DB8E137DF0C1B0"' + last-modified: + - Wed, 26 Jul 2023 20:04:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:20 GMT + x-ms-range: + - bytes=5567-9662 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Building dependency tree...\nReading state information...\nCalculating + upgrade...\n0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\nReading + package lists...\nBuilding dependency tree...\nReading state information...\nThe + following additional packages will be installed:\n git-man libcurl3-gnutls + liberror-perl libgdbm-compat4 libgdbm6 libperl5.32\n perl perl-modules-5.32\nSuggested + packages:\n gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el + git-email\n git-gui gitk gitweb git-cvs git-mediawiki git-svn gdbm-l10n perl-doc\n + \ libterm-readline-gnu-perl | libterm-readline-perl-perl make\n libtap-harness-archive-perl\nRecommended + packages:\n patch less ssh-client\nThe following NEW packages will be installed:\n + \ git git-man libcurl3-gnutls liberror-perl libgdbm-compat4 libgdbm6\n libperl5.32 + perl perl-modules-5.32\n0 upgraded, 9 newly installed, 0 to remove and 0 not + upgraded.\nNeed to get 15.1 MB of archives.\nAfter this operation, 86.0 MB + of additional disk space will be used.\nGet:1 http://deb.debian.org/debian + bullseye/main amd64 perl-modules-5.32 all 5.32.1-4+deb11u2 [2823 kB]\nGet:2 + http://deb.debian.org/debian bullseye/main amd64 libgdbm6 amd64 1.19-2 [64.9 + kB]\nGet:3 http://deb.debian.org/debian bullseye/main amd64 libgdbm-compat4 + amd64 1.19-2 [44.7 kB]\nGet:4 http://deb.debian.org/debian bullseye/main amd64 + libperl5.32 amd64 5.32.1-4+deb11u2 [4106 kB]\nGet:5 http://deb.debian.org/debian + bullseye/main amd64 perl amd64 5.32.1-4+deb11u2 [293 kB]\nGet:6 http://deb.debian.org/debian + bullseye/main amd64 libcurl3-gnutls amd64 7.74.0-1.3+deb11u7 [343 kB]\nGet:7 + http://deb.debian.org/debian bullseye/main amd64 liberror-perl all 0.17029-1 + [31.0 kB]\nGet:8 http://deb.debian.org/debian bullseye/main amd64 git-man + all 1:2.30.2-1+deb11u2 [1828 kB]\nGet:9 http://deb.debian.org/debian bullseye/main + amd64 git amd64 1:2.30.2-1+deb11u2 [5518 kB]\n\e[91mdebconf: delaying package + configuration, since apt-utils is not installed\n\e[0mFetched 15.1 MB in 0s + (107 MB/s)\nSelecting previously unselected package perl-modules-5.32.\n(Reading + database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading + database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading + database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading + database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading + database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading + database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading + database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading + database ... 10093 files and directories currently installed.)\nPreparing + to unpack .../0-perl-modules-5.32_5.32.1-4+deb11u2_all.deb ...\nUnpacking + perl-modules-5.32 (5.32.1-4+deb11u2) ...\nSelecting previously unselected + package libgdbm6:amd64.\nPreparing to unpack .../1-libgdbm6_1.19-2_amd64.deb + ...\nUnpacking libgdbm6:amd64 (1.19-2) ...\nSelecting previously unselected + package libgdbm-compat4:amd64.\nPreparing to unpack .../2-libgdbm-compat4_1.19-2_amd64.deb + ...\nUnpacking libgdbm-compat4:amd64 (1.19-2) ...\nSelecting previously unselected + package libperl5.32:amd64.\nPreparing to unpack .../3-libperl5.32_5.32.1-4+deb11u2_amd64.deb + ...\nUnpacking libperl5.32:amd64 (5.32.1-4+deb11u2) ...\nSelecting previously + unselected package perl.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3329' + content-range: + - bytes 5567-8895/8896 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:18 GMT + etag: + - '"0x8DB8E137DF0C1B0"' + last-modified: + - Wed, 26 Jul 2023 20:04:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:20 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '8896' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:18 GMT + etag: + - '"0x8DB8E137DF0C1B0"' + last-modified: + - Wed, 26 Jul 2023 20:04:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '14' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '16196' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:21 GMT + etag: + - '"0x8DB8E138095E1B1"' + last-modified: + - Wed, 26 Jul 2023 20:04:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:23 GMT + x-ms-range: + - bytes=8896-12991 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Preparing to unpack .../4-perl_5.32.1-4+deb11u2_amd64.deb ...\nUnpacking + perl (5.32.1-4+deb11u2) ...\nSelecting previously unselected package libcurl3-gnutls:amd64.\nPreparing + to unpack .../5-libcurl3-gnutls_7.74.0-1.3+deb11u7_amd64.deb ...\nUnpacking + libcurl3-gnutls:amd64 (7.74.0-1.3+deb11u7) ...\nSelecting previously unselected + package liberror-perl.\nPreparing to unpack .../6-liberror-perl_0.17029-1_all.deb + ...\nUnpacking liberror-perl (0.17029-1) ...\nSelecting previously unselected + package git-man.\nPreparing to unpack .../7-git-man_1%3a2.30.2-1+deb11u2_all.deb + ...\nUnpacking git-man (1:2.30.2-1+deb11u2) ...\nSelecting previously unselected + package git.\nPreparing to unpack .../8-git_1%3a2.30.2-1+deb11u2_amd64.deb + ...\nUnpacking git (1:2.30.2-1+deb11u2) ...\nSetting up perl-modules-5.32 + (5.32.1-4+deb11u2) ...\nSetting up libcurl3-gnutls:amd64 (7.74.0-1.3+deb11u7) + ...\nSetting up git-man (1:2.30.2-1+deb11u2) ...\nSetting up libgdbm6:amd64 + (1.19-2) ...\nSetting up libgdbm-compat4:amd64 (1.19-2) ...\nSetting up libperl5.32:amd64 + (5.32.1-4+deb11u2) ...\nSetting up perl (5.32.1-4+deb11u2) ...\nSetting up + liberror-perl (0.17029-1) ...\nSetting up git (1:2.30.2-1+deb11u2) ...\nProcessing + triggers for libc-bin (2.31-13+deb11u6) ...\nInstalling nodejs specific dependencies...\n\e[91m+++ + dirname /opt/tmp/images/build/installHugo.sh\n\e[0m\e[91m++ cd /opt/tmp/images/build\n\e[0m\e[91m++ + pwd\n\e[0m\e[91m+ __CURRENT_DIR=/opt/tmp/images/build\n\e[0m\e[91m+ source + /opt/tmp/images/build/../../build/__hugoConstants.sh\n\e[0m\e[91m++ VERSION=0.112.5\n\e[0m\e[91m++ + PLATFORM_NAME=hugo\n\e[0m\e[91m++ INSTALLED_HUGO_VERSIONS_DIR=/opt/hugo\n++ + INSTALLATION_URL_FORMAT=https://github.com/gohugoio/hugo/releases/download/v#VERSION#/#TAR_FILE#\n++ + TAR_FILE_NAME_FORMAT=hugo_extended_#VERSION#_Linux-64bit.tar.gz\n++ CONFIG_FOLDER_NAME=config\n++ + TOML_FILE_NAMES=(\"config.toml\" \"hugo.toml\")\n++ YAML_FILE_NAMES=(\"config.yaml\" + \"hugo.yaml\")\n++ YML_FILE_NAMES=(\"config.yml\" \"hugo.yml\")\n++ JSON_FILE_NAMES=(\"config.json\" + \"hugo.json\")\n\e[0m\e[91m++ sed s/#VERSION#/0.112.5/g\n\e[0m\e[91m++ echo + hugo_extended_#VERSION#_Linux-64bit.tar.gz\n\e[0m\e[91m+ fileName=hugo_extended_0.112.5_Linux-64bit.tar.gz\n\e[0m\e[91m++ + sed s/#VERSION#/0.112.5/g\n\e[0m\e[91m++ echo https://github.com/gohugoio/hugo/releases/download/v#VERSION#/#TAR_FILE#\n\e[0m\e[91m+ + url=https://github.com/gohugoio/hugo/releases/download/v0.112.5/#TAR_FILE#\n\e[0m\e[91m++ + sed s/#TAR_FILE#/hugo_extended_0.112.5_Linux-64bit.tar.gz/g\n\e[0m\e[91m++ + echo https://github.com/gohugoio/hugo/releases/download/v0.112.5/#TAR_FILE#\n\e[0m\e[91m+ + url=https://github.com/gohugoio/hugo/releases/download/v0.112.5/hugo_extended_0.112.5_Linux-64bit.tar.gz\n\e[0m\e[91m+ + request='curl -fsSLO --compressed https://github.com/gohugoio/hugo/releases/download/v0.112.5/hugo_extended_0.112.5_Linux-64bit.tar.gz'\n\e[0m\e[91m+ + /opt/tmp/images/retry.sh 'curl -fsSLO --compressed https://github.com/gohugoio/hugo/releases/download/v0.112.5/hugo_extended_0.112.5_Linux-64bit.tar.gz'\n\e[0mretry + 0\n\e[91m+ installationDir=/opt/hugo/0.112.5\n\e[0m\e[91m+ mkdir -p /opt/hugo/0.112.5\n\e[0m\e[91m+ + tar -xzf hugo_extended_0.112.5_Linux-64bit.tar.gz -C /opt/hugo/0.112.5\n\e[0m\e[91m+ + rm hugo_extended_0.112.5_Linux-64bit.tar.gz\n\e[0m\e[91m+ ln -s /opt/hugo/0.112.5 + /opt/hugo/lts\n\e[0m\e[91m+ yarnCacheFolder=/usr/local/share/yarn-cache\n\e[0m\e[91m+ + mkdir -p /usr/local/share/yarn-cache\n\e[0m\e[91m+ chmod 777 /usr/local/share/yarn-cache\n\e[0m\e[91m+ + . /opt/tmp/build/__nodeVersions.sh\n\e[0m\e[91m++ NODE_RUNTIME_BASE_TAG=20230707.2\n\e[0m\e[91m++ + YARN_VERSION=1.22.15\n\e[0m\e[91m++ YARN_MINOR_VERSION=1.17\n\e[0m\e[91m++ + YARN_MAJOR_VERSION=1\n\e[0m\e[91m++ NODE6_VERSION=6.17.1\n\e[0m\e[91m++ NODE8_VERSION=8.17.0\n\e[0m\e[91m++ + NODE10_VERSION=10.23.0\n\e[0mTry # 1\n\e[91m++ NODE12_VERSION=12.22.12\n\e[0m\e[91m++ + NODE14_VERSION=14.21.3\n++ NODE16_VERSION=16.20.1\n++ NODE18_VERSION=18.16.1\n++ + NODE_APP_INSIGHTS_SDK_VERSION=1.8.7\n++ PM2_VERSION=4.5.6\n++ NPM_VERSION=9.6.4\n+ + /opt/tmp/images/receiveGpgKeys.sh 6A010C5166006599AA17F08146C2130DFD2497F5\n+ + KEY_IDS=6A010C5166006599AA17F08146C2130DFD2497F5\n+ '[' 6A010C5166006599AA17F08146C2130DFD2497F5 + == '' ']'\n+ for keyID in $KEY_IDS\n\e[0m\e[91" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 8896-12991/16196 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:21 GMT + etag: + - '"0x8DB8E138095E1B1"' + last-modified: + - Wed, 26 Jul 2023 20:04:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:23 GMT + x-ms-range: + - bytes=12992-17087 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "m+ for i in {1..10}\n\e[0m\e[91m+ echo 'Try # 1'\n\e[0m\e[91m+ gpg + --batch --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 6A010C5166006599AA17F08146C2130DFD2497F5\n\e[0m\e[91mgpg: + directory '/root/.gnupg' created\n\e[0m\e[91mgpg: keybox '/root/.gnupg/pubring.kbx' + created\n\e[0m\e[91mgpg: key 1646B01B86E50310: 7 duplicate signatures removed\r\n\e[0m\e[91mgpg: + /root/.gnupg/trustdb.gpg: trustdb created\n\e[0m\e[91mgpg: key 1646B01B86E50310: + public key \"Yarn Packaging \" imported\n\e[0m\e[91mgpg: Total + number processed: 1\n\e[0m\e[91mgpg: imported: 1\n\e[0m\e[91m+ + '[' '' == '' ']'\n\e[0m\e[91m+ echo 'Received key successfully.'\n\e[0m\e[91m+ + break\n+ /opt/tmp/images/retry.sh 'curl -fsSLO --compressed https://yarnpkg.com/downloads/1.22.15/yarn-v1.22.15.tar.gz'\n\e[0mReceived + key successfully.\nretry 0\n\e[91m+ /opt/tmp/images/retry.sh 'curl -fsSLO + --compressed https://yarnpkg.com/downloads/1.22.15/yarn-v1.22.15.tar.gz.asc'\n\e[0mretry + 0\n\e[91m+ gpg --batch --verify yarn-v1.22.15.tar.gz.asc yarn-v1.22.15.tar.gz\n\e[0m\e[91mgpg: + Signature made Thu Sep 30 00:14:59 2021 UTC\ngpg: using RSA + key 6D98490C6F1ACDDD448E45954F77679369475BAA\n\e[0m\e[91mgpg: Good signature + from \"Yarn Packaging \" [unknown]\n\e[0m\e[91mgpg: WARNING: + This key is not certified with a trusted signature!\ngpg: There is + no indication that the signature belongs to the owner.\n\e[0m\e[91mPrimary + key fingerprint: 72EC F46A 56B4 AD39 C907 BBB7 1646 B01B 86E5 0310\n Subkey + fingerprint: 6D98 490C 6F1A CDDD 448E 4595 4F77 6793 6947 5BAA\n\e[0m\e[91m+ + mkdir -p /opt/yarn\n\e[0m\e[91m+ tar -xzf yarn-v1.22.15.tar.gz -C /opt/yarn\n\e[0m\e[91m+ + mv /opt/yarn/yarn-v1.22.15 /opt/yarn/1.22.15\n\e[0m\e[91m+ rm yarn-v1.22.15.tar.gz.asc + yarn-v1.22.15.tar.gz\n\e[0m\e[91m+ . /opt/tmp/build/__nodeVersions.sh\n\e[0m\e[91m++ + NODE_RUNTIME_BASE_TAG=20230707.2\n\e[0m\e[91m++ YARN_VERSION=1.22.15\n\e[0m\e[91m++ + YARN_MINOR_VERSION=1.17\n\e[0m\e[91m++ YARN_MAJOR_VERSION=1\n\e[0m\e[91m++ + NODE6_VERSION=6.17.1\n\e[0m\e[91m++ NODE8_VERSION=8.17.0\n\e[0m\e[91m++ NODE10_VERSION=10.23.0\n\e[0m\e[91m++ + NODE12_VERSION=12.22.12\n\e[0m\e[91m++ NODE14_VERSION=14.21.3\n\e[0m\e[91m++ + NODE16_VERSION=16.20.1\n\e[0m\e[91m++ NODE18_VERSION=18.16.1\n\e[0m\e[91m++ + NODE_APP_INSIGHTS_SDK_VERSION=1.8.7\n\e[0m\e[91m++ PM2_VERSION=4.5.6\n\e[0m\e[91m++ + NPM_VERSION=9.6.4\n\e[0m\e[91m+ ln -s 1.22.15 /opt/yarn/stable\n\e[0m\e[91m+ + ln -s 1.22.15 /opt/yarn/latest\n\e[0m\e[91m+ ln -s 1.22.15 /opt/yarn/1.17\n\e[0m\e[91m+ + ln -s 1.17 /opt/yarn/1\n\e[0m\e[91m+ mkdir -p /links\n\e[0m\e[91m+ cp -s /opt/yarn/stable/bin/yarn + /opt/yarn/stable/bin/yarnpkg /links\n\e[0m\e[91m+ echo 'Installing python + tooling and language...'\n\e[0mInstalling python tooling and language...\n\e[91m+ + PYTHONIOENCODING=UTF-8\n\e[0m\e[91m+ apt-get update\n\e[0mGet:1 http://deb.debian.org/debian + bullseye InRelease [116 kB]\nGet:2 http://deb.debian.org/debian-security bullseye-security + InRelease [48.4 kB]\nGet:3 http://deb.debian.org/debian bullseye-updates InRelease + [44.1 kB]\nGet:4 http://deb.debian.org/debian bullseye/main amd64 Packages + [8183 kB]\nGet:5 http://deb.debian.org/debian-security bullseye-security/main + amd64 Packages [252 kB]\nGet:6 http://deb.debian.org/debian bullseye-updates/main + amd64 Packages [14.8 kB]\nFetched 8658 kB in 1s (7280 kB/s)\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3204' + content-range: + - bytes 12992-16195/16196 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:21 GMT + etag: + - '"0x8DB8E138095E1B1"' + last-modified: + - Wed, 26 Jul 2023 20:04:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '16196' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:21 GMT + etag: + - '"0x8DB8E138095E1B1"' + last-modified: + - Wed, 26 Jul 2023 20:04:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '16' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:25 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '19447' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:23 GMT + etag: + - '"0x8DB8E1381FF03D5"' + last-modified: + - Wed, 26 Jul 2023 20:04:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:25 GMT + x-ms-range: + - bytes=16196-20291 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Reading package lists...\n\e[91m+ apt-get upgrade -y\n\e[0mReading + package lists...\nBuilding dependency tree...\nReading state information...\nCalculating + upgrade...\n0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n\e[91m+ + apt-get install -y --no-install-recommends make unzip libpq-dev moreutils + python3-pip swig unixodbc-dev build-essential gdb lcov pkg-config libbz2-dev + libffi-dev libgdbm-dev liblzma-dev libncurses5-dev libreadline6-dev libsqlite3-dev + libssl-dev lzma lzma\e[0m\e[91m-dev tk-dev uuid-dev zlib1g-dev\n\e[0mReading + package lists...\nBuilding dependency tree...\nReading state information...\nzlib1g-dev + is already the newest version (1:1.2.11.dfsg-2+deb11u2).\nzlib1g-dev set to + manually installed.\nlibssl-dev is already the newest version (1.1.1n-0+deb11u5).\nlibssl-dev + set to manually installed.\nThe following additional packages will be installed:\n + \ autoconf automake autotools-dev binutils binutils-common\n binutils-x86-64-linux-gnu + bzip2 cpp cpp-10 dpkg-dev g++ g++-10 gcc gcc-10\n libasan6 libatomic1 libbabeltrace1 + libbinutils libboost-regex1.74.0\n libbrotli-dev libcc1-0 libctf-nobfd0 libctf0 + libdebuginfod1 libdpkg-perl\n libdw1 libelf1 libexpat1-dev libfontconfig-dev + libfontconfig1-dev\n libfreetype-dev libfreetype6-dev libgcc-10-dev libgomp1 + libio-pty-perl\n libipc-run-perl libipt2 libisl23 libitm1 libjson-perl liblsan0 + libltdl-dev\n libltdl7 libmpc3 libmpdec3 libmpfr6 libncurses-dev libncurses6 + libodbc1\n libperlio-gzip-perl libpng-dev libpq5 libpthread-stubs0-dev\n + \ libpython3-stdlib libpython3.9 libpython3.9-minimal libpython3.9-stdlib\n + \ libquadmath0 libsigsegv2 libsource-highlight-common libsource-highlight4v5\n + \ libstdc++-10-dev libtcl8.6 libtime-duration-perl libtimedate-perl libtk8.6\n + \ libtsan0 libubsan1 libx11-dev libxau-dev libxcb1-dev libxdmcp-dev\n libxext-dev + libxft-dev libxft2 libxrender-dev libxss-dev libxss1 m4\n media-types odbcinst + odbcinst1debian2 patch python-pip-whl python3\n python3-distutils python3-lib2to3 + python3-minimal python3-pkg-resources\n python3-setuptools python3-wheel + python3.9 python3.9-minimal swig4.0 tcl\n tcl-dev tcl8.6 tcl8.6-dev tk tk8.6 + tk8.6-dev x11-common x11proto-core-dev\n x11proto-dev x11proto-scrnsaver-dev + x11proto-xext-dev xorg-sgml-doctools\n xtrans-dev xz-utils\nSuggested packages:\n + \ autoconf-archive gnu-standards autoconf-doc libtool gettext binutils-doc\n + \ bzip2-doc cpp-doc gcc-10-locales debian-keyring g++-multilib g++-10-multilib\n + \ gcc-10-doc gcc-multilib manpages-dev flex bison gcc-doc gcc-10-multilib\n + \ gdb-doc gdbserver bzr freetype2-doc libtool-doc liblzma-doc ncurses-doc\n + \ libmyodbc odbc-postgresql tdsodbc unixodbc-bin postgresql-doc-13\n readline-doc + sqlite3-doc libstdc++-10-doc libx11-doc libxcb-doc libxext-doc\n m4-doc make-doc + ed diffutils-doc python3-doc python3-tk python3-venv\n python-setuptools-doc + python3.9-venv python3.9-doc binfmt-support swig-doc\n swig-examples swig4.0-examples + swig4.0-doc tcl-doc tcl-tclreadline\n tcl8.6-doc tk-doc tk8.6-doc zip\nRecommended + packages:\n fakeroot libalgorithm-merge-perl libc-dbg libgd-gd2-perl bzip2-doc\n + \ libfile-fcntllock-perl liblocale-gettext-perl libjson-xs-perl libtool\n + \ libgpm2 libpng-tools python3-dev xterm | x-terminal-emulator\nThe following + NEW packages will be installed:\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3251' + content-range: + - bytes 16196-19446/19447 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:23 GMT + etag: + - '"0x8DB8E1381FF03D5"' + last-modified: + - Wed, 26 Jul 2023 20:04:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:25 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '19447' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:23 GMT + etag: + - '"0x8DB8E1381FF03D5"' + last-modified: + - Wed, 26 Jul 2023 20:04:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '17' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '35914' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:25 GMT + etag: + - '"0x8DB8E13832E0B30"' + last-modified: + - Wed, 26 Jul 2023 20:04:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:28 GMT + x-ms-range: + - bytes=19447-23542 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: " autoconf automake autotools-dev binutils binutils-common\n binutils-x86-64-linux-gnu + build-essential bzip2 cpp cpp-10 dpkg-dev g++\n g++-10 gcc gcc-10 gdb lcov + libasan6 libatomic1 libbabeltrace1 libbinutils\n libboost-regex1.74.0 libbrotli-dev + libbz2-dev libcc1-0 libctf-nobfd0 libctf0\n libdebuginfod1 libdpkg-perl libdw1 + libelf1 libexpat1-dev libffi-dev\n libfontconfig-dev libfontconfig1-dev libfreetype-dev + libfreetype6-dev\n libgcc-10-dev libgdbm-dev libgomp1 libio-pty-perl libipc-run-perl + libipt2\n libisl23 libitm1 libjson-perl liblsan0 libltdl-dev libltdl7 liblzma-dev\n + \ libmpc3 libmpdec3 libmpfr6 libncurses-dev libncurses5-dev libncurses6\n + \ libodbc1 libperlio-gzip-perl libpng-dev libpq-dev libpq5\n libpthread-stubs0-dev + libpython3-stdlib libpython3.9 libpython3.9-minimal\n libpython3.9-stdlib + libquadmath0 libreadline-dev libsigsegv2\n libsource-highlight-common libsource-highlight4v5 + libsqlite3-dev\n libstdc++-10-dev libtcl8.6 libtime-duration-perl libtimedate-perl + libtk8.6\n libtsan0 libubsan1 libx11-dev libxau-dev libxcb1-dev libxdmcp-dev\n + \ libxext-dev libxft-dev libxft2 libxrender-dev libxss-dev libxss1 lzma\n + \ lzma-dev m4 make media-types moreutils odbcinst odbcinst1debian2 patch\n + \ pkg-config python-pip-whl python3 python3-distutils python3-lib2to3\n python3-minimal + python3-pip python3-pkg-resources python3-setuptools\n python3-wheel python3.9 + python3.9-minimal swig swig4.0 tcl tcl-dev tcl8.6\n tcl8.6-dev tk tk-dev + tk8.6 tk8.6-dev unixodbc-dev unzip uuid-dev x11-common\n x11proto-core-dev + x11proto-dev x11proto-scrnsaver-dev x11proto-xext-dev\n xorg-sgml-doctools + xtrans-dev xz-utils\n0 upgraded, 131 newly installed, 0 to remove and 0 not + upgraded.\nNeed to get 87.8 MB of archives.\nAfter this operation, 309 MB + of additional disk space will be used.\nGet:1 http://deb.debian.org/debian + bullseye/main amd64 libpython3.9-minimal amd64 3.9.2-1 [801 kB]\nGet:2 http://deb.debian.org/debian + bullseye/main amd64 python3.9-minimal amd64 3.9.2-1 [1955 kB]\nGet:3 http://deb.debian.org/debian + bullseye/main amd64 python3-minimal amd64 3.9.2-3 [38.2 kB]\nGet:4 http://deb.debian.org/debian + bullseye/main amd64 media-types all 4.0.0 [30.3 kB]\nGet:5 http://deb.debian.org/debian + bullseye/main amd64 libmpdec3 amd64 2.5.1-1 [87.7 kB]\nGet:6 http://deb.debian.org/debian + bullseye/main amd64 libpython3.9-stdlib amd64 3.9.2-1 [1684 kB]\nGet:7 http://deb.debian.org/debian + bullseye/main amd64 python3.9 amd64 3.9.2-1 [466 kB]\nGet:8 http://deb.debian.org/debian + bullseye/main amd64 libpython3-stdlib amd64 3.9.2-3 [21.4 kB]\nGet:9 http://deb.debian.org/debian + bullseye/main amd64 python3 amd64 3.9.2-3 [37.9 kB]\nGet:10 http://deb.debian.org/debian + bullseye/main amd64 bzip2 amd64 1.0.8-4 [49.3 kB]\nGet:11 http://deb.debian.org/debian + bullseye/main amd64 xz-utils amd64 5.2.5-2.1~deb11u1 [220 kB]\nGet:12 http://deb.debian.org/debian + bullseye/main amd64 libsigsegv2 amd64 2.13-1 [34.8 kB]\nGet:13 http://deb.debian.org/debian + bullseye/main amd64 m4 amd64 1.4.18-5 [204 kB]\nGet:14 http://deb.debian.org/debian + bullseye/main amd64 autoconf all 2.69-14 [313 kB]\nGet:15 http://deb.debian.org/debian + bullseye/main amd64 autotools-dev all 20180224.1+nmu1 [77.1 kB]\nGet:16 http://deb.debian.org/debian + bullseye/main amd64 automake all 1:1.16.3-2 [814 kB]\nGet:17 http://deb.debian.org/debian + bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB]\nGet:18 http://deb.debian.org/debian + bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB]\nGet:19 http://deb.debian.org/debian + bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB]\nGet:20 http://deb.debian.org/debian + bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB]\nGet:21 http://deb.debian.org/debian + bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB]\nGet:22 + http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 + kB]\nGet:23 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 + 0.23-1 [676 kB]\nGet:24 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 + amd64 4.1.0-3 [2012 kB]\nGet:25 http://deb.debian.org/debian bullseye/main + amd64 libmpc3 amd64 1.2.0-1 [45.0 kB]\nGet:26 ht" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 19447-23542/35914 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:26 GMT + etag: + - '"0x8DB8E13832E0B30"' + last-modified: + - Wed, 26 Jul 2023 20:04:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:28 GMT + x-ms-range: + - bytes=23543-27638 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: 'tp://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 + [8528 kB] + + Get:27 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 + [19.7 kB] + + Get:28 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 + [47.0 kB] + + Get:29 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 + [99.9 kB] + + Get:30 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 + [25.8 kB] + + Get:31 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 + [9008 B] + + Get:32 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 + [2065 kB] + + Get:33 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 + [828 kB] + + Get:34 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 + [2000 kB] + + Get:35 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 + [777 kB] + + Get:36 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 + 10.2.1-6 [145 kB] + + Get:37 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 + 10.2.1-6 [2328 kB] + + Get:38 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 + [17.0 MB] + + Get:39 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 + [5192 B] + + Get:40 http://deb.debian.org/debian bullseye/main amd64 libstdc++-10-dev amd64 + 10.2.1-6 [1741 kB] + + Get:41 http://deb.debian.org/debian bullseye/main amd64 g++-10 amd64 10.2.1-6 + [9380 kB] + + Get:42 http://deb.debian.org/debian bullseye/main amd64 g++ amd64 4:10.2.1-1 + [1644 B] + + Get:43 http://deb.debian.org/debian bullseye/main amd64 make amd64 4.3-4.1 + [396 kB] + + Get:44 http://deb.debian.org/debian bullseye/main amd64 libdpkg-perl all 1.20.12 + [1551 kB] + + Get:45 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 + [128 kB] + + Get:46 http://deb.debian.org/debian bullseye/main amd64 dpkg-dev all 1.20.12 + [2312 kB] + + Get:47 http://deb.debian.org/debian bullseye/main amd64 build-essential amd64 + 12.9 [7704 B] + + Get:48 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 + [165 kB] + + Get:49 http://deb.debian.org/debian bullseye/main amd64 libdw1 amd64 0.183-1 + [234 kB] + + Get:50 http://deb.debian.org/debian bullseye/main amd64 libbabeltrace1 amd64 + 1.5.8-1+b3 [174 kB] + + Get:51 http://deb.debian.org/debian bullseye/main amd64 libdebuginfod1 amd64 + 0.183-1 [27.4 kB] + + Get:52 http://deb.debian.org/debian bullseye/main amd64 libipt2 amd64 2.0.3-1 + [43.7 kB] + + Get:53 http://deb.debian.org/debian bullseye/main amd64 libpython3.9 amd64 + 3.9.2-1 [1691 kB] + + Get:54 http://deb.debian.org/debian bullseye/main amd64 libsource-highlight-common + all 3.1.9-3 [79.7 kB] + + Get:55 http://deb.debian.org/debian bullseye/main amd64 libboost-regex1.74.0 + amd64 1.74.0-9 [516 kB] + + Get:56 http://deb.debian.org/debian bullseye/main amd64 libsource-highlight4v5 + amd64 3.1.9-3+b1 [259 kB] + + Get:57 http://deb.debian.org/debian bullseye/main amd64 gdb amd64 10.1-1.7 + [3395 kB] + + Get:58 http://deb.debian.org/debian bullseye/main amd64 libjson-perl all 4.03000-1 + [88.6 kB] + + Get:59 http://deb.debian.org/debian bullseye/main amd64 libperlio-gzip-perl + amd64 0.19-1+b7 [17.4 kB] + + Get:60 http://deb.debian.org/debian bullseye/main amd64 lcov all 1.14-2 [138 + kB] + + Get:61 http://deb.debian.org/debian bullseye/main amd64 libbrotli-dev amd64 + 1.0.9-2+b2 [288 kB] + + Get:62 http://deb.debian.org/debian bullseye/main amd64 libbz2-dev amd64 1.0.8-4 + [30.1 kB] + + Get:63 http://deb.debian.org/debian bullseye/main amd64 libexpat1-dev amd64 + 2.2.10-2+deb11u5 [141 kB] + + Get:64 http://deb.debian.org/debian bullseye/main amd64 libffi-dev amd64 3.3-6 + [56.5 kB] + + Get:65 http://deb.debian.org/debian bullseye/main amd64 libpng-dev amd64 1.6.37-3 + [298 kB] + + Get:66 http://deb.debian.org/debian bullseye/main amd64 libfreetype-dev amd64 + 2.10.4+dfsg-1+deb11u1 [571 kB] + + Get:67 http://deb.debian.org/debian bullseye/main amd64 libfreetype6-dev amd64 + 2.10.4+dfsg-1+deb11u1 [82.6 kB] + + Get:68 http://deb.debian.org/debian bullseye/main amd64 uuid-dev amd64 2.36.1-8+deb11u1 + [99.4 kB] + + Get:69 http://deb.debian.org/debian bullseye/main amd64 pkg-config amd64 0.29.2-1 + [65.1 kB] + + Get:70 http://deb.debian.org/debian bulls' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 23543-27638/35914 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:26 GMT + etag: + - '"0x8DB8E13832E0B30"' + last-modified: + - Wed, 26 Jul 2023 20:04:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:28 GMT + x-ms-range: + - bytes=27639-31734 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "eye/main amd64 libfontconfig-dev amd64 2.13.1-4.2 [368 kB]\r\nGet:71 + http://deb.debian.org/debian bullseye/main amd64 libfontconfig1-dev amd64 + 2.13.1-4.2 [238 kB]\nGet:72 http://deb.debian.org/debian bullseye/main amd64 + libgdbm-dev amd64 1.19-2 [130 kB]\nGet:73 http://deb.debian.org/debian bullseye/main + amd64 libio-pty-perl amd64 1:1.15-2 [37.0 kB]\nGet:74 http://deb.debian.org/debian + bullseye/main amd64 libipc-run-perl all 20200505.0-1 [102 kB]\nGet:75 http://deb.debian.org/debian + bullseye/main amd64 libltdl7 amd64 2.4.6-15 [391 kB]\nGet:76 http://deb.debian.org/debian + bullseye/main amd64 libltdl-dev amd64 2.4.6-15 [162 kB]\nGet:77 http://deb.debian.org/debian + bullseye/main amd64 liblzma-dev amd64 5.2.5-2.1~deb11u1 [229 kB]\nGet:78 http://deb.debian.org/debian + bullseye/main amd64 libncurses6 amd64 6.2+20201114-2+deb11u1 [102 kB]\nGet:79 + http://deb.debian.org/debian bullseye/main amd64 libncurses-dev amd64 6.2+20201114-2+deb11u1 + [344 kB]\nGet:80 http://deb.debian.org/debian bullseye/main amd64 libncurses5-dev + amd64 6.2+20201114-2+deb11u1 [948 B]\nGet:81 http://deb.debian.org/debian + bullseye/main amd64 libodbc1 amd64 2.3.6-0.1+b1 [224 kB]\nGet:82 http://deb.debian.org/debian-security + bullseye-security/main amd64 libpq5 amd64 13.11-0+deb11u1 [180 kB]\nGet:83 + http://deb.debian.org/debian-security bullseye-security/main amd64 libpq-dev + amd64 13.11-0+deb11u1 [140 kB]\nGet:84 http://deb.debian.org/debian bullseye/main + amd64 libpthread-stubs0-dev amd64 0.4-1 [5344 B]\nGet:85 http://deb.debian.org/debian + bullseye/main amd64 libreadline-dev amd64 8.1-1 [148 kB]\nGet:86 http://deb.debian.org/debian + bullseye/main amd64 libsqlite3-dev amd64 3.34.1-3 [963 kB]\nGet:87 http://deb.debian.org/debian + bullseye/main amd64 libtcl8.6 amd64 8.6.11+dfsg-1 [1018 kB]\nGet:88 http://deb.debian.org/debian + bullseye/main amd64 libtime-duration-perl all 1.21-1 [13.7 kB]\nGet:89 http://deb.debian.org/debian + bullseye/main amd64 libtimedate-perl all 2.3300-2 [39.3 kB]\nGet:90 http://deb.debian.org/debian + bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB]\nGet:91 http://deb.debian.org/debian + bullseye/main amd64 x11-common all 1:7.7+22 [252 kB]\nGet:92 http://deb.debian.org/debian + bullseye/main amd64 libxss1 amd64 1:1.2.3-1 [17.8 kB]\nGet:93 http://deb.debian.org/debian + bullseye/main amd64 libtk8.6 amd64 8.6.11-2 [780 kB]\nGet:94 http://deb.debian.org/debian + bullseye/main amd64 xorg-sgml-doctools all 1:1.11-1.1 [22.1 kB]\nGet:95 http://deb.debian.org/debian + bullseye/main amd64 x11proto-dev all 2020.1-1 [594 kB]\nGet:96 http://deb.debian.org/debian + bullseye/main amd64 libxau-dev amd64 1:1.0.9-1 [22.9 kB]\nGet:97 http://deb.debian.org/debian + bullseye/main amd64 x11proto-core-dev all 2020.1-1 [3404 B]\nGet:98 http://deb.debian.org/debian + bullseye/main amd64 libxdmcp-dev amd64 1:1.1.2-3 [42.2 kB]\nGet:99 http://deb.debian.org/debian + bullseye/main amd64 xtrans-dev all 1.4.0-1 [98.7 kB]\nGet:100 http://deb.debian.org/debian + bullseye/main amd64 libxcb1-dev amd64 1.14-3 [176 kB]\nGet:101 http://deb.debian.org/debian-security + bullseye-security/main amd64 libx11-dev amd64 2:1.7.2-1+deb11u1 [843 kB]\nGet:102 + http://deb.debian.org/debian bullseye/main amd64 x11proto-xext-dev all 2020.1-1 + [3404 B]\nGet:103 http://deb.debian.org/debian bullseye/main amd64 libxext-dev + amd64 2:1.3.3-1.1 [107 kB]\nGet:104 http://deb.debian.org/debian bullseye/main + amd64 libxrender-dev amd64 1:0.9.10-1 [40.8 kB]\nGet:105 http://deb.debian.org/debian + bullseye/main amd64 libxft-dev amd64 2.3.2-2 [68.7 kB]\nGet:106 http://deb.debian.org/debian + bullseye/main amd64 x11proto-scrnsaver-dev all 2020.1-1 [3412 B]\nGet:107 + http://deb.debian.org/debian bullseye/main amd64 libxss-dev amd64 1:1.2.3-1 + [23.5 kB]\nGet:108 http://deb.debian.org/debian bullseye/main amd64 lzma amd64 + 9.22-2.2 [49.6 kB]\nGet:109 http://deb.debian.org/debian bullseye/main amd64 + lzma-dev all 9.22-2.2 [44.8 kB]\nGet:110 http://deb.debian.org/debian bullseye/main + amd64 moreutils amd64 0.65-1 [75.5 kB]\nGet:111 http://deb.debian.org/debian + bullseye/main amd64 odbcinst1debian2 amd64 2.3.6-0.1+b1 [78.6 kB]\nGet:112 + http://deb.debian.org/debian bullseye/main amd64 odbcinst am" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 27639-31734/35914 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:26 GMT + etag: + - '"0x8DB8E13832E0B30"' + last-modified: + - Wed, 26 Jul 2023 20:04:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:28 GMT + x-ms-range: + - bytes=31735-35830 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "d64 2.3.6-0.1+b1 [48.7 kB]\nGet:113 http://deb.debian.org/debian bullseye/main + amd64 python-pip-whl all 20.3.4-4+deb11u1 [1948 kB]\nGet:114 http://deb.debian.org/debian + bullseye/main amd64 python3-lib2to3 all 3.9.2-1 [77.8 kB]\nGet:115 http://deb.debian.org/debian + bullseye/main amd64 python3-distutils all 3.9.2-1 [143 kB]\nGet:116 http://deb.debian.org/debian + bullseye/main amd64 python3-pkg-resources all 52.0.0-4 [190 kB]\nGet:117 http://deb.debian.org/debian + bullseye/main amd64 python3-setuptools all 52.0.0-4 [366 kB]\nGet:118 http://deb.debian.org/debian + bullseye/main amd64 python3-wheel all 0.34.2-1 [24.0 kB]\nGet:119 http://deb.debian.org/debian + bullseye/main amd64 python3-pip all 20.3.4-4+deb11u1 [337 kB]\nGet:120 http://deb.debian.org/debian + bullseye/main amd64 swig4.0 amd64 4.0.2-1 [1377 kB]\nGet:121 http://deb.debian.org/debian + bullseye/main amd64 swig all 4.0.2-1 [330 kB]\nGet:122 http://deb.debian.org/debian + bullseye/main amd64 tcl8.6 amd64 8.6.11+dfsg-1 [124 kB]\nGet:123 http://deb.debian.org/debian + bullseye/main amd64 tcl amd64 8.6.11+1 [5788 B]\nGet:124 http://deb.debian.org/debian + bullseye/main amd64 tcl8.6-dev amd64 8.6.11+dfsg-1 [1018 kB]\nGet:125 http://deb.debian.org/debian + bullseye/main amd64 tcl-dev amd64 8.6.11+1 [8360 B]\nGet:126 http://deb.debian.org/debian + bullseye/main amd64 tk8.6 amd64 8.6.11-2 [72.3 kB]\nGet:127 http://deb.debian.org/debian + bullseye/main amd64 tk amd64 8.6.11+1 [5828 B]\nGet:128 http://deb.debian.org/debian + bullseye/main amd64 tk8.6-dev amd64 8.6.11-2 [777 kB]\nGet:129 http://deb.debian.org/debian + bullseye/main amd64 tk-dev amd64 8.6.11+1 [5656 B]\nGet:130 http://deb.debian.org/debian + bullseye/main amd64 unixodbc-dev amd64 2.3.6-0.1+b1 [262 kB]\nGet:131 http://deb.debian.org/debian + bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB]\n\e[91mdebconf: delaying + package configuration, since apt-utils is not installed\n\e[0mFetched 87.8 + MB in 1s (120 MB/s)\nSelecting previously unselected package libpython3.9-minimal:amd64.\n(Reading + database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading + database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading + database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading + database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading + database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading + database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading + database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading + database ... 13069 files and directories currently installed.)\nPreparing + to unpack .../libpython3.9-minimal_3.9.2-1_amd64.deb ...\nUnpacking libpython3.9-minimal:amd64 + (3.9.2-1) ...\nSelecting previously unselected package python3.9-minimal.\nPreparing + to unpack .../python3.9-minimal_3.9.2-1_amd64.deb ...\nUnpacking python3.9-minimal + (3.9.2-1) ...\nSetting up libpython3.9-minimal:amd64 (3.9.2-1) ...\nSetting + up python3.9-minimal (3.9.2-1) ...\nSelecting previously unselected package + python3-minimal.\n(Reading database ... \n(Reading database ... 5%\n(Reading + database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading + database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading + database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading + database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading + database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading + database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading + database ... 100%\n(Reading database ... 13354 files and directories currently + installed.)\nPreparing to unpack .../0-python3-minimal_3.9.2-3_amd64.deb ...\nUnpacking + python3-minimal (3.9.2-3) ...\nSelecting previously unselected package media-types.\nPreparing + to unpack .../1-media-types_4.0.0_all.deb ...\nUnpacking media-types (4.0.0) + ...\nSelecting previously unselected package libmpdec3:amd64.\nPreparing to + unpack .../2-libmpdec3_2.5.1-1_amd64.deb ...\nUnpacking libmpdec3:amd64 (2.5.1-1) + ...\nSelecting previously unselected package libpython3.9-" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 31735-35830/35914 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:26 GMT + etag: + - '"0x8DB8E13832E0B30"' + last-modified: + - Wed, 26 Jul 2023 20:04:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:28 GMT + x-ms-range: + - bytes=35831-39926 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "stdlib:amd64.\nPreparing to unpack .../3-libpython3.9-stdlib_3.9.2-1_amd64.deb + ...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '83' + content-range: + - bytes 35831-35913/35914 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:26 GMT + etag: + - '"0x8DB8E13832E0B30"' + last-modified: + - Wed, 26 Jul 2023 20:04:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:28 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '35914' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:26 GMT + etag: + - '"0x8DB8E13832E0B30"' + last-modified: + - Wed, 26 Jul 2023 20:04:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '19' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '39768' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:28 GMT + etag: + - '"0x8DB8E1384D31C97"' + last-modified: + - Wed, 26 Jul 2023 20:04:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:31 GMT + x-ms-range: + - bytes=35914-40009 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Unpacking libpython3.9-stdlib:amd64 (3.9.2-1) ...\nSelecting previously + unselected package python3.9.\nPreparing to unpack .../4-python3.9_3.9.2-1_amd64.deb + ...\nUnpacking python3.9 (3.9.2-1) ...\nSelecting previously unselected package + libpython3-stdlib:amd64.\nPreparing to unpack .../5-libpython3-stdlib_3.9.2-3_amd64.deb + ...\nUnpacking libpython3-stdlib:amd64 (3.9.2-3) ...\nSetting up python3-minimal + (3.9.2-3) ...\nSelecting previously unselected package python3.\n(Reading + database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading + database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading + database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading + database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading + database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading + database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading + database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading + database ... 13751 files and directories currently installed.)\nPreparing + to unpack .../000-python3_3.9.2-3_amd64.deb ...\nUnpacking python3 (3.9.2-3) + ...\nSelecting previously unselected package bzip2.\nPreparing to unpack .../001-bzip2_1.0.8-4_amd64.deb + ...\nUnpacking bzip2 (1.0.8-4) ...\nSelecting previously unselected package + xz-utils.\nPreparing to unpack .../002-xz-utils_5.2.5-2.1~deb11u1_amd64.deb + ...\nUnpacking xz-utils (5.2.5-2.1~deb11u1) ...\nSelecting previously unselected + package libsigsegv2:amd64.\nPreparing to unpack .../003-libsigsegv2_2.13-1_amd64.deb + ...\nUnpacking libsigsegv2:amd64 (2.13-1) ...\nSelecting previously unselected + package m4.\nPreparing to unpack .../004-m4_1.4.18-5_amd64.deb ...\nUnpacking + m4 (1.4.18-5) ...\nSelecting previously unselected package autoconf.\nPreparing + to unpack .../005-autoconf_2.69-14_all.deb ...\nUnpacking autoconf (2.69-14) + ...\nSelecting previously unselected package autotools-dev.\nPreparing to + unpack .../006-autotools-dev_20180224.1+nmu1_all.deb ...\nUnpacking autotools-dev + (20180224.1+nmu1) ...\nSelecting previously unselected package automake.\nPreparing + to unpack .../007-automake_1%3a1.16.3-2_all.deb ...\nUnpacking automake (1:1.16.3-2) + ...\nSelecting previously unselected package binutils-common:amd64.\nPreparing + to unpack .../008-binutils-common_2.35.2-2_amd64.deb ...\nUnpacking binutils-common:amd64 + (2.35.2-2) ...\nSelecting previously unselected package libbinutils:amd64.\nPreparing + to unpack .../009-libbinutils_2.35.2-2_amd64.deb ...\nUnpacking libbinutils:amd64 + (2.35.2-2) ...\nSelecting previously unselected package libctf-nobfd0:amd64.\nPreparing + to unpack .../010-libctf-nobfd0_2.35.2-2_amd64.deb ...\nUnpacking libctf-nobfd0:amd64 + (2.35.2-2) ...\nSelecting previously unselected package libctf0:amd64.\nPreparing + to unpack .../011-libctf0_2.35.2-2_amd64.deb ...\nUnpacking libctf0:amd64 + (2.35.2-2) ...\nSelecting previously unselected package binutils-x86-64-linux-gnu.\nPreparing + to unpack .../012-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ...\nUnpacking + binutils-x86-64-linux-gnu (2.35.2-2) ...\nSelecting previously unselected + package binutils.\nPreparing to unpack .../013-binutils_2.35.2-2_amd64.deb + ...\nUnpacking binutils (2.35.2-2) ...\nSelecting previously unselected package + libisl23:amd64.\nPreparing to unpack .../014-libisl23_0.23-1_amd64.deb ...\nUnpacking + libisl23:amd64 (0.23-1) ...\nSelecting previously unselected package libmpfr6:amd64.\nPreparing + to unpack .../015-libmpfr6_4.1.0-3_amd64.deb ...\nUnpacking libmpfr6:amd64 + (4.1.0-3) ...\nSelecting previously unselected package libmpc3:amd64.\nPreparing + to unpack .../016-libmpc3_1.2.0-1_amd64.deb ...\nUnpacking libmpc3:amd64 (1.2.0-1) + ...\nSelecting previously unselected package cpp-10.\nPreparing to unpack + .../017-cpp-10_10.2.1-6_amd64.deb ...\nUnpacking cpp-10 (10.2.1-6) ...\nSelecting + previously unselected package cpp.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3854' + content-range: + - bytes 35914-39767/39768 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:29 GMT + etag: + - '"0x8DB8E1384D31C97"' + last-modified: + - Wed, 26 Jul 2023 20:04:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:31 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '39768' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:29 GMT + etag: + - '"0x8DB8E1384D31C97"' + last-modified: + - Wed, 26 Jul 2023 20:04:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '20' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:33 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '41635' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:31 GMT + etag: + - '"0x8DB8E1386841338"' + last-modified: + - Wed, 26 Jul 2023 20:04:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '21' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:33 GMT + x-ms-range: + - bytes=39768-43863 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Preparing to unpack .../018-cpp_4%3a10.2.1-1_amd64.deb ...\nUnpacking + cpp (4:10.2.1-1) ...\nSelecting previously unselected package libcc1-0:amd64.\nPreparing + to unpack .../019-libcc1-0_10.2.1-6_amd64.deb ...\nUnpacking libcc1-0:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libgomp1:amd64.\nPreparing + to unpack .../020-libgomp1_10.2.1-6_amd64.deb ...\nUnpacking libgomp1:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libitm1:amd64.\nPreparing + to unpack .../021-libitm1_10.2.1-6_amd64.deb ...\nUnpacking libitm1:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libatomic1:amd64.\nPreparing + to unpack .../022-libatomic1_10.2.1-6_amd64.deb ...\nUnpacking libatomic1:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libasan6:amd64.\nPreparing + to unpack .../023-libasan6_10.2.1-6_amd64.deb ...\nUnpacking libasan6:amd64 + (10.2.1-6) ...\nSelecting previously unselected package liblsan0:amd64.\nPreparing + to unpack .../024-liblsan0_10.2.1-6_amd64.deb ...\nUnpacking liblsan0:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libtsan0:amd64.\nPreparing + to unpack .../025-libtsan0_10.2.1-6_amd64.deb ...\nUnpacking libtsan0:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libubsan1:amd64.\nPreparing + to unpack .../026-libubsan1_10.2.1-6_amd64.deb ...\nUnpacking libubsan1:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libquadmath0:amd64.\nPreparing + to unpack .../027-libquadmath0_10.2.1-6_amd64.deb ...\nUnpacking libquadmath0:amd64 + (10.2.1-6) ...\nSelecting previously unselected package libgcc-10-dev:amd64.\nPreparing + to unpack .../028-libgcc-10-dev_10.2.1-6_amd64.deb ...\nUnpacking libgcc-10-dev:amd64 + (10.2.1-6) ...\nSelecting previously unselected package gcc-10.\nPreparing + to unpack .../029-gcc-10_10.2.1-6_amd64.deb ...\nUnpacking gcc-10 (10.2.1-6) + ...\nSelecting previously unselected package gcc.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1867' + content-range: + - bytes 39768-41634/41635 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:31 GMT + etag: + - '"0x8DB8E1386841338"' + last-modified: + - Wed, 26 Jul 2023 20:04:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '21' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:33 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '41635' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:31 GMT + etag: + - '"0x8DB8E1386841338"' + last-modified: + - Wed, 26 Jul 2023 20:04:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '21' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:36 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '43913' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:34 GMT + etag: + - '"0x8DB8E1387C392FE"' + last-modified: + - Wed, 26 Jul 2023 20:04:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '22' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:36 GMT + x-ms-range: + - bytes=41635-45730 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Preparing to unpack .../030-gcc_4%3a10.2.1-1_amd64.deb ...\nUnpacking + gcc (4:10.2.1-1) ...\nSelecting previously unselected package libstdc++-10-dev:amd64.\nPreparing + to unpack .../031-libstdc++-10-dev_10.2.1-6_amd64.deb ...\nUnpacking libstdc++-10-dev:amd64 + (10.2.1-6) ...\nSelecting previously unselected package g++-10.\nPreparing + to unpack .../032-g++-10_10.2.1-6_amd64.deb ...\nUnpacking g++-10 (10.2.1-6) + ...\nSelecting previously unselected package g++.\nPreparing to unpack .../033-g++_4%3a10.2.1-1_amd64.deb + ...\nUnpacking g++ (4:10.2.1-1) ...\nSelecting previously unselected package + make.\nPreparing to unpack .../034-make_4.3-4.1_amd64.deb ...\nUnpacking make + (4.3-4.1) ...\nSelecting previously unselected package libdpkg-perl.\nPreparing + to unpack .../035-libdpkg-perl_1.20.12_all.deb ...\nUnpacking libdpkg-perl + (1.20.12) ...\nSelecting previously unselected package patch.\nPreparing to + unpack .../036-patch_2.7.6-7_amd64.deb ...\nUnpacking patch (2.7.6-7) ...\nSelecting + previously unselected package dpkg-dev.\nPreparing to unpack .../037-dpkg-dev_1.20.12_all.deb + ...\nUnpacking dpkg-dev (1.20.12) ...\nSelecting previously unselected package + build-essential.\nPreparing to unpack .../038-build-essential_12.9_amd64.deb + ...\nUnpacking build-essential (12.9) ...\nSelecting previously unselected + package libelf1:amd64.\nPreparing to unpack .../039-libelf1_0.183-1_amd64.deb + ...\nUnpacking libelf1:amd64 (0.183-1) ...\nSelecting previously unselected + package libdw1:amd64.\nPreparing to unpack .../040-libdw1_0.183-1_amd64.deb + ...\nUnpacking libdw1:amd64 (0.183-1) ...\nSelecting previously unselected + package libbabeltrace1:amd64.\nPreparing to unpack .../041-libbabeltrace1_1.5.8-1+b3_amd64.deb + ...\nUnpacking libbabeltrace1:amd64 (1.5.8-1+b3) ...\nSelecting previously + unselected package libdebuginfod1:amd64.\nPreparing to unpack .../042-libdebuginfod1_0.183-1_amd64.deb + ...\nUnpacking libdebuginfod1:amd64 (0.183-1) ...\nSelecting previously unselected + package libipt2.\nPreparing to unpack .../043-libipt2_2.0.3-1_amd64.deb ...\nUnpacking + libipt2 (2.0.3-1) ...\nSelecting previously unselected package libpython3.9:amd64.\nPreparing + to unpack .../044-libpython3.9_3.9.2-1_amd64.deb ...\nUnpacking libpython3.9:amd64 + (3.9.2-1) ...\nSelecting previously unselected package libsource-highlight-common.\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2278' + content-range: + - bytes 41635-43912/43913 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:34 GMT + etag: + - '"0x8DB8E1387C392FE"' + last-modified: + - Wed, 26 Jul 2023 20:04:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '22' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:36 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '43913' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:34 GMT + etag: + - '"0x8DB8E1387C392FE"' + last-modified: + - Wed, 26 Jul 2023 20:04:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '22' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:38 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '49706' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:36 GMT + etag: + - '"0x8DB8E13890360DF"' + last-modified: + - Wed, 26 Jul 2023 20:04:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '23' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:39 GMT + x-ms-range: + - bytes=43913-48008 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: 'Preparing to unpack .../045-libsource-highlight-common_3.1.9-3_all.deb + ... + + Unpacking libsource-highlight-common (3.1.9-3) ... + + Selecting previously unselected package libboost-regex1.74.0:amd64. + + Preparing to unpack .../046-libboost-regex1.74.0_1.74.0-9_amd64.deb ... + + Unpacking libboost-regex1.74.0:amd64 (1.74.0-9) ... + + Selecting previously unselected package libsource-highlight4v5. + + Preparing to unpack .../047-libsource-highlight4v5_3.1.9-3+b1_amd64.deb ... + + Unpacking libsource-highlight4v5 (3.1.9-3+b1) ... + + Selecting previously unselected package gdb. + + Preparing to unpack .../048-gdb_10.1-1.7_amd64.deb ... + + Unpacking gdb (10.1-1.7) ... + + Selecting previously unselected package libjson-perl. + + Preparing to unpack .../049-libjson-perl_4.03000-1_all.deb ... + + Unpacking libjson-perl (4.03000-1) ... + + Selecting previously unselected package libperlio-gzip-perl. + + Preparing to unpack .../050-libperlio-gzip-perl_0.19-1+b7_amd64.deb ... + + Unpacking libperlio-gzip-perl (0.19-1+b7) ... + + Selecting previously unselected package lcov. + + Preparing to unpack .../051-lcov_1.14-2_all.deb ... + + Unpacking lcov (1.14-2) ... + + Selecting previously unselected package libbrotli-dev:amd64. + + Preparing to unpack .../052-libbrotli-dev_1.0.9-2+b2_amd64.deb ... + + Unpacking libbrotli-dev:amd64 (1.0.9-2+b2) ... + + Selecting previously unselected package libbz2-dev:amd64. + + Preparing to unpack .../053-libbz2-dev_1.0.8-4_amd64.deb ... + + Unpacking libbz2-dev:amd64 (1.0.8-4) ... + + Selecting previously unselected package libexpat1-dev:amd64. + + Preparing to unpack .../054-libexpat1-dev_2.2.10-2+deb11u5_amd64.deb ... + + Unpacking libexpat1-dev:amd64 (2.2.10-2+deb11u5) ... + + Selecting previously unselected package libffi-dev:amd64. + + Preparing to unpack .../055-libffi-dev_3.3-6_amd64.deb ... + + Unpacking libffi-dev:amd64 (3.3-6) ... + + Selecting previously unselected package libpng-dev:amd64. + + Preparing to unpack .../056-libpng-dev_1.6.37-3_amd64.deb ... + + Unpacking libpng-dev:amd64 (1.6.37-3) ... + + Selecting previously unselected package libfreetype-dev:amd64. + + Preparing to unpack .../057-libfreetype-dev_2.10.4+dfsg-1+deb11u1_amd64.deb + ... + + Unpacking libfreetype-dev:amd64 (2.10.4+dfsg-1+deb11u1) ... + + Selecting previously unselected package libfreetype6-dev:amd64. + + Preparing to unpack .../058-libfreetype6-dev_2.10.4+dfsg-1+deb11u1_amd64.deb + ... + + Unpacking libfreetype6-dev:amd64 (2.10.4+dfsg-1+deb11u1) ... + + Selecting previously unselected package uuid-dev:amd64. + + Preparing to unpack .../059-uuid-dev_2.36.1-8+deb11u1_amd64.deb ... + + Unpacking uuid-dev:amd64 (2.36.1-8+deb11u1) ... + + Selecting previously unselected package pkg-config. + + Preparing to unpack .../060-pkg-config_0.29.2-1_amd64.deb ... + + Unpacking pkg-config (0.29.2-1) ... + + Selecting previously unselected package libfontconfig-dev:amd64. + + Preparing to unpack .../061-libfontconfig-dev_2.13.1-4.2_amd64.deb ... + + Unpacking libfontconfig-dev:amd64 (2.13.1-4.2) ... + + Selecting previously unselected package libfontconfig1-dev:amd64. + + Preparing to unpack .../062-libfontconfig1-dev_2.13.1-4.2_amd64.deb ... + + Unpacking libfontconfig1-dev:amd64 (2.13.1-4.2) ... + + Selecting previously unselected package libgdbm-dev:amd64. + + Preparing to unpack .../063-libgdbm-dev_1.19-2_amd64.deb ... + + Unpacking libgdbm-dev:amd64 (1.19-2) ... + + Selecting previously unselected package libio-pty-perl. + + Preparing to unpack .../064-libio-pty-perl_1%3a1.15-2_amd64.deb ... + + Unpacking libio-pty-perl (1:1.15-2) ... + + Selecting previously unselected package libipc-run-perl. + + Preparing to unpack .../065-libipc-run-perl_20200505.0-1_all.deb ... + + Unpacking libipc-run-perl (20200505.0-1) ... + + Selecting previously unselected package libltdl7:amd64. + + Preparing to unpack .../066-libltdl7_2.4.6-15_amd64.deb ... + + Unpacking libltdl7:amd64 (2.4.6-15) ... + + Selecting previously unselected package libltdl-dev:amd64. + + Preparing to unpack .../067-libltdl-dev_2.4.6-15_amd64.deb ... + + Unpacking libltdl-dev:amd64 (2.4.6-15) ... + + Selecting previously unselected package liblzma-dev:amd64. + + Preparing to unpack .../068-liblzma-dev_5.2.5-2.1~deb11u1_amd64.deb ... + + Unpacking liblzma-dev:amd64 (5.2.5-2.1~deb11u1) ... + + Selecting previously unselected package libncurses' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 43913-48008/49706 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:36 GMT + etag: + - '"0x8DB8E13890360DF"' + last-modified: + - Wed, 26 Jul 2023 20:04:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '23' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:39 GMT + x-ms-range: + - bytes=48009-52104 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "6:amd64.\nPreparing to unpack .../069-libncurses6_6.2+20201114-2+deb11u1_amd64.deb + ...\nUnpacking libncurses6:amd64 (6.2+20201114-2+deb11u1) ...\nSelecting previously + unselected package libncurses-dev:amd64.\nPreparing to unpack .../070-libncurses-dev_6.2+20201114-2+deb11u1_amd64.deb + ...\nUnpacking libncurses-dev:amd64 (6.2+20201114-2+deb11u1) ...\nSelecting + previously unselected package libncurses5-dev:amd64.\nPreparing to unpack + .../071-libncurses5-dev_6.2+20201114-2+deb11u1_amd64.deb ...\nUnpacking libncurses5-dev:amd64 + (6.2+20201114-2+deb11u1) ...\nSelecting previously unselected package libodbc1:amd64.\nPreparing + to unpack .../072-libodbc1_2.3.6-0.1+b1_amd64.deb ...\nUnpacking libodbc1:amd64 + (2.3.6-0.1+b1) ...\nSelecting previously unselected package libpq5:amd64.\nPreparing + to unpack .../073-libpq5_13.11-0+deb11u1_amd64.deb ...\nUnpacking libpq5:amd64 + (13.11-0+deb11u1) ...\nSelecting previously unselected package libpq-dev.\nPreparing + to unpack .../074-libpq-dev_13.11-0+deb11u1_amd64.deb ...\nUnpacking libpq-dev + (13.11-0+deb11u1) ...\nSelecting previously unselected package libpthread-stubs0-dev:amd64.\nPreparing + to unpack .../075-libpthread-stubs0-dev_0.4-1_amd64.deb ...\nUnpacking libpthread-stubs0-dev:amd64 + (0.4-1) ...\nSelecting previously unselected package libreadline-dev:amd64.\nPreparing + to unpack .../076-libreadline-dev_8.1-1_amd64.deb ...\nUnpacking libreadline-dev:amd64 + (8.1-1) ...\nSelecting previously unselected package libsqlite3-dev:amd64.\nPreparing + to unpack .../077-libsqlite3-dev_3.34.1-3_amd64.deb ...\nUnpacking libsqlite3-dev:amd64 + (3.34.1-3) ...\nSelecting previously unselected package libtcl8.6:amd64.\nPreparing + to unpack .../078-libtcl8.6_8.6.11+dfsg-1_amd64.deb ...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1697' + content-range: + - bytes 48009-49705/49706 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:37 GMT + etag: + - '"0x8DB8E13890360DF"' + last-modified: + - Wed, 26 Jul 2023 20:04:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '23' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:39 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '49706' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:37 GMT + etag: + - '"0x8DB8E13890360DF"' + last-modified: + - Wed, 26 Jul 2023 20:04:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '23' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:42 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '61079' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:40 GMT + etag: + - '"0x8DB8E138BB6FDAA"' + last-modified: + - Wed, 26 Jul 2023 20:04:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '25' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:42 GMT + x-ms-range: + - bytes=49706-53801 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: 'Unpacking libtcl8.6:amd64 (8.6.11+dfsg-1) ... + + Selecting previously unselected package libtime-duration-perl. + + Preparing to unpack .../079-libtime-duration-perl_1.21-1_all.deb ... + + Unpacking libtime-duration-perl (1.21-1) ... + + Selecting previously unselected package libtimedate-perl. + + Preparing to unpack .../080-libtimedate-perl_2.3300-2_all.deb ... + + Unpacking libtimedate-perl (2.3300-2) ... + + Selecting previously unselected package libxft2:amd64. + + Preparing to unpack .../081-libxft2_2.3.2-2_amd64.deb ... + + Unpacking libxft2:amd64 (2.3.2-2) ... + + Selecting previously unselected package x11-common. + + Preparing to unpack .../082-x11-common_1%3a7.7+22_all.deb ... + + Unpacking x11-common (1:7.7+22) ... + + Selecting previously unselected package libxss1:amd64. + + Preparing to unpack .../083-libxss1_1%3a1.2.3-1_amd64.deb ... + + Unpacking libxss1:amd64 (1:1.2.3-1) ... + + Selecting previously unselected package libtk8.6:amd64. + + Preparing to unpack .../084-libtk8.6_8.6.11-2_amd64.deb ... + + Unpacking libtk8.6:amd64 (8.6.11-2) ... + + Selecting previously unselected package xorg-sgml-doctools. + + Preparing to unpack .../085-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ... + + Unpacking xorg-sgml-doctools (1:1.11-1.1) ... + + Selecting previously unselected package x11proto-dev. + + Preparing to unpack .../086-x11proto-dev_2020.1-1_all.deb ... + + Unpacking x11proto-dev (2020.1-1) ... + + Selecting previously unselected package libxau-dev:amd64. + + Preparing to unpack .../087-libxau-dev_1%3a1.0.9-1_amd64.deb ... + + Unpacking libxau-dev:amd64 (1:1.0.9-1) ... + + Selecting previously unselected package x11proto-core-dev. + + Preparing to unpack .../088-x11proto-core-dev_2020.1-1_all.deb ... + + Unpacking x11proto-core-dev (2020.1-1) ... + + Selecting previously unselected package libxdmcp-dev:amd64. + + Preparing to unpack .../089-libxdmcp-dev_1%3a1.1.2-3_amd64.deb ... + + Unpacking libxdmcp-dev:amd64 (1:1.1.2-3) ... + + Selecting previously unselected package xtrans-dev. + + Preparing to unpack .../090-xtrans-dev_1.4.0-1_all.deb ... + + Unpacking xtrans-dev (1.4.0-1) ... + + Selecting previously unselected package libxcb1-dev:amd64. + + Preparing to unpack .../091-libxcb1-dev_1.14-3_amd64.deb ... + + Unpacking libxcb1-dev:amd64 (1.14-3) ... + + Selecting previously unselected package libx11-dev:amd64. + + Preparing to unpack .../092-libx11-dev_2%3a1.7.2-1+deb11u1_amd64.deb ... + + Unpacking libx11-dev:amd64 (2:1.7.2-1+deb11u1) ... + + Selecting previously unselected package x11proto-xext-dev. + + Preparing to unpack .../093-x11proto-xext-dev_2020.1-1_all.deb ... + + Unpacking x11proto-xext-dev (2020.1-1) ... + + Selecting previously unselected package libxext-dev:amd64. + + Preparing to unpack .../094-libxext-dev_2%3a1.3.3-1.1_amd64.deb ... + + Unpacking libxext-dev:amd64 (2:1.3.3-1.1) ... + + Selecting previously unselected package libxrender-dev:amd64. + + Preparing to unpack .../095-libxrender-dev_1%3a0.9.10-1_amd64.deb ... + + Unpacking libxrender-dev:amd64 (1:0.9.10-1) ... + + Selecting previously unselected package libxft-dev:amd64. + + Preparing to unpack .../096-libxft-dev_2.3.2-2_amd64.deb ... + + Unpacking libxft-dev:amd64 (2.3.2-2) ... + + Selecting previously unselected package x11proto-scrnsaver-dev. + + Preparing to unpack .../097-x11proto-scrnsaver-dev_2020.1-1_all.deb ... + + Unpacking x11proto-scrnsaver-dev (2020.1-1) ... + + Selecting previously unselected package libxss-dev:amd64. + + Preparing to unpack .../098-libxss-dev_1%3a1.2.3-1_amd64.deb ... + + Unpacking libxss-dev:amd64 (1:1.2.3-1) ... + + Selecting previously unselected package lzma. + + Preparing to unpack .../099-lzma_9.22-2.2_amd64.deb ... + + Unpacking lzma (9.22-2.2) ... + + Selecting previously unselected package lzma-dev. + + Preparing to unpack .../100-lzma-dev_9.22-2.2_all.deb ... + + Unpacking lzma-dev (9.22-2.2) ... + + Selecting previously unselected package moreutils. + + Preparing to unpack .../101-moreutils_0.65-1_amd64.deb ... + + Unpacking moreutils (0.65-1) ... + + Selecting previously unselected package odbcinst1debian2:amd64. + + Preparing to unpack .../102-odbcinst1debian2_2.3.6-0.1+b1_amd64.deb ... + + Unpacking odbcinst1debian2:amd64 (2.3.6-0.1+b1) ... + + Selecting previously unselected package odbcinst. + + Preparing to unpack .../103-odbcinst_2.3.6-0.1+b1_amd64.deb ... + + Unpacking odbc' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 49706-53801/61079 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:40 GMT + etag: + - '"0x8DB8E138BB6FDAA"' + last-modified: + - Wed, 26 Jul 2023 20:04:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '25' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:42 GMT + x-ms-range: + - bytes=53802-57897 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "inst (2.3.6-0.1+b1) ...\nSelecting previously unselected package python-pip-whl.\nPreparing + to unpack .../104-python-pip-whl_20.3.4-4+deb11u1_all.deb ...\nUnpacking python-pip-whl + (20.3.4-4+deb11u1) ...\nSelecting previously unselected package python3-lib2to3.\nPreparing + to unpack .../105-python3-lib2to3_3.9.2-1_all.deb ...\nUnpacking python3-lib2to3 + (3.9.2-1) ...\nSelecting previously unselected package python3-distutils.\nPreparing + to unpack .../106-python3-distutils_3.9.2-1_all.deb ...\nUnpacking python3-distutils + (3.9.2-1) ...\nSelecting previously unselected package python3-pkg-resources.\nPreparing + to unpack .../107-python3-pkg-resources_52.0.0-4_all.deb ...\nUnpacking python3-pkg-resources + (52.0.0-4) ...\nSelecting previously unselected package python3-setuptools.\nPreparing + to unpack .../108-python3-setuptools_52.0.0-4_all.deb ...\nUnpacking python3-setuptools + (52.0.0-4) ...\nSelecting previously unselected package python3-wheel.\nPreparing + to unpack .../109-python3-wheel_0.34.2-1_all.deb ...\nUnpacking python3-wheel + (0.34.2-1) ...\nSelecting previously unselected package python3-pip.\nPreparing + to unpack .../110-python3-pip_20.3.4-4+deb11u1_all.deb ...\nUnpacking python3-pip + (20.3.4-4+deb11u1) ...\nSelecting previously unselected package swig4.0.\nPreparing + to unpack .../111-swig4.0_4.0.2-1_amd64.deb ...\nUnpacking swig4.0 (4.0.2-1) + ...\nSelecting previously unselected package swig.\r\nPreparing to unpack + .../112-swig_4.0.2-1_all.deb ...\nUnpacking swig (4.0.2-1) ...\nSelecting + previously unselected package tcl8.6.\nPreparing to unpack .../113-tcl8.6_8.6.11+dfsg-1_amd64.deb + ...\nUnpacking tcl8.6 (8.6.11+dfsg-1) ...\nSelecting previously unselected + package tcl.\nPreparing to unpack .../114-tcl_8.6.11+1_amd64.deb ...\nUnpacking + tcl (8.6.11+1) ...\nSelecting previously unselected package tcl8.6-dev:amd64.\nPreparing + to unpack .../115-tcl8.6-dev_8.6.11+dfsg-1_amd64.deb ...\nUnpacking tcl8.6-dev:amd64 + (8.6.11+dfsg-1) ...\nSelecting previously unselected package tcl-dev:amd64.\nPreparing + to unpack .../116-tcl-dev_8.6.11+1_amd64.deb ...\nUnpacking tcl-dev:amd64 + (8.6.11+1) ...\nSelecting previously unselected package tk8.6.\nPreparing + to unpack .../117-tk8.6_8.6.11-2_amd64.deb ...\nUnpacking tk8.6 (8.6.11-2) + ...\nSelecting previously unselected package tk.\nPreparing to unpack .../118-tk_8.6.11+1_amd64.deb + ...\nUnpacking tk (8.6.11+1) ...\nSelecting previously unselected package + tk8.6-dev:amd64.\nPreparing to unpack .../119-tk8.6-dev_8.6.11-2_amd64.deb + ...\nUnpacking tk8.6-dev:amd64 (8.6.11-2) ...\nSelecting previously unselected + package tk-dev:amd64.\nPreparing to unpack .../120-tk-dev_8.6.11+1_amd64.deb + ...\nUnpacking tk-dev:amd64 (8.6.11+1) ...\nSelecting previously unselected + package unixodbc-dev:amd64.\nPreparing to unpack .../121-unixodbc-dev_2.3.6-0.1+b1_amd64.deb + ...\nUnpacking unixodbc-dev:amd64 (2.3.6-0.1+b1) ...\nSelecting previously + unselected package unzip.\nPreparing to unpack .../122-unzip_6.0-26+deb11u1_amd64.deb + ...\nUnpacking unzip (6.0-26+deb11u1) ...\nSetting up media-types (4.0.0) + ...\nSetting up libxft2:amd64 (2.3.2-2) ...\nSetting up libio-pty-perl (1:1.15-2) + ...\nSetting up unzip (6.0-26+deb11u1) ...\nSetting up libpng-dev:amd64 (1.6.37-3) + ...\nSetting up binutils-common:amd64 (2.35.2-2) ...\nSetting up x11-common + (1:7.7+22) ...\ndebconf: unable to initialize frontend: Dialog\ndebconf: (TERM + is not set, so the dialog frontend is not usable.)\ndebconf: falling back + to frontend: Readline\ninvoke-rc.d: could not determine current runlevel\ninvoke-rc.d: + policy-rc.d denied execution of start.\nSetting up libpq5:amd64 (13.11-0+deb11u1) + ...\nSetting up libctf-nobfd0:amd64 (2.35.2-2) ...\nSetting up libpq-dev (13.11-0+deb11u1) + ...\nSetting up libgomp1:amd64 (10.2.1-6) ...\nSetting up bzip2 (1.0.8-4) + ...\nSetting up libffi-dev:amd64 (3.3-6) ...\nSetting up libpthread-stubs0-dev:amd64 + (0.4-1) ...\nSetting up libsource-highlight-common (3.1.9-3) ...\nSetting + up libasan6:amd64 (10.2.1-6) ...\nSetting up xtrans-dev (1.4.0-1) ...\nSetting + up autotools-dev (20180224.1+nmu1) ...\nSetting up libexpat1-dev:amd64 (2.2.10-2+deb11u5) + ...\nSetting up libsqlite3-dev:amd64 (3.34.1-3) ...\nSetting up ma" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 53802-57897/61079 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:40 GMT + etag: + - '"0x8DB8E138BB6FDAA"' + last-modified: + - Wed, 26 Jul 2023 20:04:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '25' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:42 GMT + x-ms-range: + - bytes=57898-61993 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "ke (4.3-4.1) ...\nSetting up libmpfr6:amd64 (4.1.0-3) ...\nSetting + up uuid-dev:amd64 (2.36.1-8+deb11u1) ...\nSetting up libncurses6:amd64 (6.2+20201114-2+deb11u1) + ...\nSetting up libsigsegv2:amd64 (2.13-1) ...\nSetting up xz-utils (5.2.5-2.1~deb11u1) + ...\nupdate-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) + in auto mode\nSetting up libboost-regex1.74.0:amd64 (1.74.0-9) ...\nSetting + up libquadmath0:amd64 (10.2.1-6) ...\nSetting up libmpc3:amd64 (1.2.0-1) ...\nSetting + up libatomic1:amd64 (10.2.1-6) ...\nSetting up patch (2.7.6-7) ...\nSetting + up libtcl8.6:amd64 (8.6.11+dfsg-1) ...\nSetting up libipt2 (2.0.3-1) ...\nSetting + up lzma (9.22-2.2) ...\nupdate-alternatives: using /usr/bin/lzmp to provide + /usr/bin/lzma (lzma) in auto mode\nSetting up libipc-run-perl (20200505.0-1) + ...\nSetting up libltdl7:amd64 (2.4.6-15) ...\nSetting up libdpkg-perl (1.20.12) + ...\nSetting up lzma-dev (9.22-2.2) ...\nSetting up libtime-duration-perl + (1.21-1) ...\nSetting up libtimedate-perl (2.3300-2) ...\nSetting up liblzma-dev:amd64 + (5.2.5-2.1~deb11u1) ...\nSetting up libubsan1:amd64 (10.2.1-6) ...\nSetting + up libjson-perl (4.03000-1) ...\nSetting up libmpdec3:amd64 (2.5.1-1) ...\nSetting + up xorg-sgml-doctools (1:1.11-1.1) ...\nSetting up python-pip-whl (20.3.4-4+deb11u1) + ...\nSetting up libxss1:amd64 (1:1.2.3-1) ...\nSetting up libgdbm-dev:amd64 + (1.19-2) ...\nSetting up libbinutils:amd64 (2.35.2-2) ...\nSetting up swig4.0 + (4.0.2-1) ...\nSetting up libisl23:amd64 (0.23-1) ...\nSetting up libperlio-gzip-perl + (0.19-1+b7) ...\nSetting up libelf1:amd64 (0.183-1) ...\nSetting up libcc1-0:amd64 + (10.2.1-6) ...\nSetting up libbrotli-dev:amd64 (1.0.9-2+b2) ...\nSetting up + liblsan0:amd64 (10.2.1-6) ...\nSetting up cpp-10 (10.2.1-6) ...\nSetting up + libitm1:amd64 (10.2.1-6) ...\nSetting up libsource-highlight4v5 (3.1.9-3+b1) + ...\nSetting up libpython3.9-stdlib:amd64 (3.9.2-1) ...\nSetting up libpython3-stdlib:amd64 + (3.9.2-3) ...\nSetting up libbz2-dev:amd64 (1.0.8-4) ...\nSetting up libtsan0:amd64 + (10.2.1-6) ...\nSetting up libctf0:amd64 (2.35.2-2) ...\nSetting up x11proto-dev + (2020.1-1) ...\nSetting up libdw1:amd64 (0.183-1) ...\nSetting up tcl8.6 (8.6.11+dfsg-1) + ...\nSetting up libncurses-dev:amd64 (6.2+20201114-2+deb11u1) ...\nSetting + up swig (4.0.2-1) ...\nSetting up moreutils (0.65-1) ...\nSetting up libxau-dev:amd64 + (1:1.0.9-1) ...\nSetting up libgcc-10-dev:amd64 (10.2.1-6) ...\nSetting up + libtk8.6:amd64 (8.6.11-2) ...\nSetting up libdebuginfod1:amd64 (0.183-1) ...\nSetting + up m4 (1.4.18-5) ...\nSetting up libreadline-dev:amd64 (8.1-1) ...\nSetting + up libfreetype-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...\nSetting up libxdmcp-dev:amd64 + (1:1.1.2-3) ...\nSetting up libpython3.9:amd64 (3.9.2-1) ...\nSetting up x11proto-core-dev + (2020.1-1) ...\nSetting up pkg-config (0.29.2-1) ...\nSetting up libodbc1:amd64 + (2.3.6-0.1+b1) ...\nSetting up libbabeltrace1:amd64 (1.5.8-1+b3) ...\nSetting + up autoconf (2.69-14) ...\nSetting up x11proto-xext-dev (2020.1-1) ...\nSetting + up cpp (4:10.2.1-1) ...\nSetting up tcl (8.6.11+1) ...\nSetting up libncurses5-dev:amd64 + (6.2+20201114-2+deb11u1) ...\nSetting up x11proto-scrnsaver-dev (2020.1-1) + ...\nSetting up python3.9 (3.9.2-1) ...\nSetting up binutils-x86-64-linux-gnu + (2.35.2-2) ...\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3181' + content-range: + - bytes 57898-61078/61079 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:40 GMT + etag: + - '"0x8DB8E138BB6FDAA"' + last-modified: + - Wed, 26 Jul 2023 20:04:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '25' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:42 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '61079' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:40 GMT + etag: + - '"0x8DB8E138BB6FDAA"' + last-modified: + - Wed, 26 Jul 2023 20:04:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '25' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '63863' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:43 GMT + etag: + - '"0x8DB8E138D409B8D"' + last-modified: + - Wed, 26 Jul 2023 20:04:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '26' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:45 GMT + x-ms-range: + - bytes=61079-65174 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Setting up automake (1:1.16.3-2) ...\nupdate-alternatives: using /usr/bin/automake-1.16 + to provide /usr/bin/automake (automake) in auto mode\nSetting up tk8.6 (8.6.11-2) + ...\nSetting up libstdc++-10-dev:amd64 (10.2.1-6) ...\nSetting up libxcb1-dev:amd64 + (1.14-3) ...\nSetting up libx11-dev:amd64 (2:1.7.2-1+deb11u1) ...\nSetting + up python3 (3.9.2-3) ...\nrunning python rtupdate hooks for python3.9...\nrunning + python post-rtupdate hooks for python3.9...\nSetting up binutils (2.35.2-2) + ...\nSetting up python3-wheel (0.34.2-1) ...\nSetting up dpkg-dev (1.20.12) + ...\nSetting up libfreetype6-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...\nSetting + up libltdl-dev:amd64 (2.4.6-15) ...\nSetting up gdb (10.1-1.7) ...\nSetting + up gcc-10 (10.2.1-6) ...\nSetting up libxext-dev:amd64 (2:1.3.3-1.1) ...\nSetting + up tk (8.6.11+1) ...\nSetting up python3-lib2to3 (3.9.2-1) ...\nSetting up + libxrender-dev:amd64 (1:0.9.10-1) ...\nSetting up python3-pkg-resources (52.0.0-4) + ...\nSetting up python3-distutils (3.9.2-1) ...\nSetting up g++-10 (10.2.1-6) + ...\nSetting up python3-setuptools (52.0.0-4) ...\nSetting up libfontconfig-dev:amd64 + (2.13.1-4.2) ...\nSetting up tcl8.6-dev:amd64 (8.6.11+dfsg-1) ...\nSetting + up libxss-dev:amd64 (1:1.2.3-1) ...\nSetting up gcc (4:10.2.1-1) ...\nSetting + up python3-pip (20.3.4-4+deb11u1) ...\nSetting up tcl-dev:amd64 (8.6.11+1) + ...\nSetting up g++ (4:10.2.1-1) ...\nupdate-alternatives: using /usr/bin/g++ + to provide /usr/bin/c++ (c++) in auto mode\nSetting up build-essential (12.9) + ...\nSetting up libxft-dev:amd64 (2.3.2-2) ...\nSetting up libfontconfig1-dev:amd64 + (2.13.1-4.2) ...\nSetting up lcov (1.14-2) ...\nSetting up tk8.6-dev:amd64 + (8.6.11-2) ...\nSetting up tk-dev:amd64 (8.6.11+1) ...\nSetting up odbcinst1debian2:amd64 + (2.3.6-0.1+b1) ...\nSetting up unixodbc-dev:amd64 (2.3.6-0.1+b1) ...\nSetting + up odbcinst (2.3.6-0.1+b1) ...\nProcessing triggers for libc-bin (2.31-13+deb11u6) + ...\n\e[91m+ rm -rf /var/lib/apt/lists/auxfiles /var/lib/apt/lists/deb.debian.org_debian-security_dists_bullseye-security_InRelease + /var/lib/apt/lists/deb.debian.org_debian-security_dists_bullseye-security_main_binary-amd64_Packages.lz4 + /var/lib/apt/lists/deb.debian.\e[0m\e[91morg_debian_dists_bullseye-updates_InRelease + /var/lib/apt/lists/deb.debian.org_debian_dists_bullseye-updates_main_binary-amd64_Packages.lz4 + /var/lib/apt/lists/deb.debian.org_debian_dists_bullseye_InRelease /var/lib/apt/lists/deb.debian.org_debian_dists_bullseye_main_binary-amd64_Packages.lz4 + /var/lib/apt/lists/lock /var/lib/apt/lists/partial\n\e[0m\e[91m+ tmpDir=/opt/tmp\n+ + imagesDir=/opt/tmp/images\n+ buildDir=/opt/tmp/build\n+ mkdir -p /usr/local/share/pip-cache/lib\n\e[0m\e[91m+ + chmod -R 777 /usr/local/share/pip-cache\n\e[0m\e[91m+ pip3 install pip --upgrade\n\e[0mRequirement + already satisfied: pip in /usr/lib/python3/dist-packages (20.3.4)\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '2784' + content-range: + - bytes 61079-63862/63863 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:43 GMT + etag: + - '"0x8DB8E138D409B8D"' + last-modified: + - Wed, 26 Jul 2023 20:04:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '26' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:45 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '63863' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:43 GMT + etag: + - '"0x8DB8E138D409B8D"' + last-modified: + - Wed, 26 Jul 2023 20:04:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '26' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:47 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '64947' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:45 GMT + etag: + - '"0x8DB8E138EC5310D"' + last-modified: + - Wed, 26 Jul 2023 20:04:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '27' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:47 GMT + x-ms-range: + - bytes=63863-67958 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Collecting pip\n Downloading pip-23.2.1-py3-none-any.whl (2.1 MB)\nInstalling + collected packages: pip\n Attempting uninstall: pip\n Found existing installation: + pip 20.3.4\n Not uninstalling pip at /usr/lib/python3/dist-packages, outside + environment /usr\n Can't uninstall 'pip'. No files were found to uninstall.\nSuccessfully + installed pip-23.2.1\n\e[91m+ python3 -m pip install --upgrade cython\n\e[0mCollecting + cython\n Obtaining dependency information for cython from https://files.pythonhosted.org/packages/15/37/314c82797f3798d738f5bde4b85c01f54b2b81acf516fb3fcbc6896c5f8f/Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata\n + \ Downloading Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata + (3.1 kB)\nDownloading Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + (3.6 MB)\n \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 + 3.6/3.6 MB 89.9 MB/s eta 0:00:00\nInstalling collected packages: cython\nSuccessfully + installed cython-3.0.0\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1004' + content-range: + - bytes 63863-64946/64947 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:45 GMT + etag: + - '"0x8DB8E138EC5310D"' + last-modified: + - Wed, 26 Jul 2023 20:04:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '27' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:47 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '64947' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:45 GMT + etag: + - '"0x8DB8E138EC5310D"' + last-modified: + - Wed, 26 Jul 2023 20:04:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '27' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:50 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '64947' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:48 GMT + etag: + - '"0x8DB8E138EC5310D"' + last-modified: + - Wed, 26 Jul 2023 20:04:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '27' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:52 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '86091' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:50 GMT + etag: + - '"0x8DB8E1391DDC32E"' + last-modified: + - Wed, 26 Jul 2023 20:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:52 GMT + x-ms-range: + - bytes=64947-69042 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "\e[91mWARNING: Running pip as the 'root' user can result in broken + permissions and conflicting behaviour with the system package manager. It + is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv\n\e[0m\e[91m+ + pip3 install --upgrade cython\n\e[0mRequirement already satisfied: cython + in /usr/local/lib/python3.9/dist-packages (3.0.0)\n\e[91mWARNING: Running + pip as the 'root' user can result in broken permissions and conflicting behaviour + with the system package manager. It is recommended to use a virtual environment + instead: https://pip.pypa.io/warnings/venv\n\e[0m\e[91m+ . /opt/tmp/build/__pythonVersions.sh\n++ + PYTHON_RUNTIME_BASE_TAG=20230316.1\n++ PIP_VERSION=21.2.4\n++ PYTHON27_VERSION=2.7.18\n++ + PYTHON36_VERSION=3.6.15\n++ PYTHON37_VERSION=3.7.15\n++ PYTHON38_VERSION=3.8.16\n++ + PYTHON39_VERSION=3.9.15\n\e[0m\e[91m++ PYTHON310_VERSION=3.10.8\n\e[0m\e[91m++ + PYTHON311_VERSION=3.11.0\n\e[0m\e[91m+ /opt/tmp/images/installPlatform.sh + python 3.8.16\n\e[0m\e[91m+++ dirname /opt/tmp/images/installPlatform.sh\n\e[0m\e[91m++ + cd /opt/tmp/images\n\e[0m\e[91m++ pwd\n\e[0m\e[91m+ CURRENT_DIR=/opt/tmp/images\n\e[0m\e[91m+ + source /opt/tmp/images/__common.sh\n\e[0m\e[91m++++ dirname /opt/tmp/images/__common.sh\n\e[0m\e[91m+++ + cd /opt/tmp/images\n\e[0m\e[91m+++ pwd\n\e[0m\e[91m++ __CURRENT_DIR=/opt/tmp/images\n\e[0m\e[91m++ + source /opt/tmp/images/__sdkStorageConstants.sh\n\e[0m\e[91m+++ ENABLE_DYNAMIC_INSTALL_KEY=ENABLE_DYNAMIC_INSTALL\n\e[0m\e[91m+++ + SDK_STORAGE_BASE_URL_KEY_NAME=ORYX_SDK_STORAGE_BASE_URL\n\e[0m\e[91m+++ TESTING_SDK_STORAGE_URL_KEY_NAME=ORYX_TEST_SDK_STORAGE_URL\n\e[0m\e[91m+++ + PRIVATE_STAGING_STORAGE_SAS_TOKEN_KEY=ORYX_SDK_STORAGE_ACCOUNT_ACCESS_TOKEN\n\e[0m\e[91m+++ + ORYX_KEYVAULT_URI=https://oryx.vault.azure.net\n\e[0m\e[91m+++ STAGING_STORAGE_SAS_TOKEN_KEYVAULT_SECRET_NAME=ORYX-SDK-STAGING-PRIVATE-SAS-TOKEN\n\e[0m\e[91m+++ + PRIVATE_STAGING_SDK_STORAGE_BASE_URL=https://oryxsdksstaging.blob.core.windows.net\n\e[0m\e[91m+++ + DEV_SDK_STORAGE_BASE_URL=https://oryxsdksdev.blob.core.windows.net\n\e[0m\e[91m+++ + SANDBOX_SDK_STORAGE_BASE_URL=https://oryxsdkssandbox.blob.core.windows.net\n\e[0m\e[91m+++ + PRIVATE_SDK_STORAGE_BASE_URL=https://oryxsdksprivate.blob.core.windows.net\n\e[0m\e[91m+++ + PROD_SDK_STORAGE_BASE_URL=https://oryxsdksprod.blob.core.windows.net\n\e[0m\e[91m+++ + PROD_BACKUP_SDK_STORAGE_BASE_URL=https://oryxsdksprodbackup.blob.core.windows.net\n\e[0m\e[91m+++ + PROD_SDK_CDN_STORAGE_BASE_URL=https://oryx-cdn.microsoft.io\n\e[0m\e[91m+++ + DEFAULT_VERSION_FILE_NAME=defaultVersion.txt\n+++ DEFAULT_VERSION_FILE_PREFIX=defaultVersion\n+++ + DEFAULT_VERSION_FILE_TYPE=txt\n+++ VERSIONS_TO_BUILD_FILE_NAME=versionsToBuild.txt\n+++ + CONTAINER_METADATA_URL_FORMAT='{0}/{1}?restype=container&comp=list&include=metadata&marker={2}&{3}'\n+++ + SDK_DOWNLOAD_SENTINEL_FILE_NAME=.oryx-sdkdownload-sentinel\n+++ SDK_VERSION_METADATA_NAME=Sdk_version\n+++ + LEGACY_SDK_VERSION_METADATA_NAME=Version\n+++ DOTNET_RUNTIME_VERSION_METADATA_NAME=Dotnet_runtime_version\n+++ + LEGACY_DOTNET_RUNTIME_VERSION_METADATA_NAME=Runtime_version\n+++ OS_TYPE_METADATA_NAME=Os_type\n+ + PARAMS=\n+ (( 2 ))\n+ case \"$1\" in\n+ PARAMS=' python'\n+ shift\n+ (( + \ 1 ))\n+ case \"$1\" in\n+ PARAMS=' python 3.8.16'\n+ shift\n+ (( 0 ))\n+ + eval set -- ' python 3.8.16'\n++ set -- python 3.8.16\n+ PLATFORM_NAME=python\n+ + VERSION=3.8.16\n+ debianFlavor=bullseye\n+ fileName=python-3.8.16.tar.gz\n+ + sdkStorageAccountUrl=https://oryx-cdn.microsoft.io\n+ sasToken=\n+ '[' -z + https://oryx-cdn.microsoft.io ']'\n+ '[' https://oryx-cdn.microsoft.io == + https://oryxsdksstaging.blob.core.windows.net ']'\n+ '[' -z bullseye ']'\n+ + '[' bullseye == stretch ']'\n+ fileName=python-bullseye-3.8.16.tar.gz\n+ platformDir=/opt/python\n+ + '[' -z '' ']'\n+ targetDir=/opt/python/3.8.16\n+ START_TIME=0\n+ set +x\n\e[0mDownloading + python version '3.8.16' from 'https://oryx-cdn.microsoft.io'...\nretry 0\n\e[91m + \ % Total % Received % Xferd Average Speed Time Time Time Current\n + \ Dload Upload Total Spent Left Speed\n\n\e[0m\e[91m + \ 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\n\e[0m\e[91m + 75 71.9M 75 54.0M 0 0 108M 0 --:--:-- --:--:-" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 64947-69042/86091 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:50 GMT + etag: + - '"0x8DB8E1391DDC32E"' + last-modified: + - Wed, 26 Jul 2023 20:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:52 GMT + x-ms-range: + - bytes=69043-73138 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "- --:--:-- 107M\n\e[0m\e[91m100 71.9M 100 71.9M 0 0 110M + \ 0 --:--:-- --:--:-- --:--:-- 110M\n\e[0mVerifying checksum...\npython-bullseye-3.8.16.tar.gz: + OK\n\e[91m+ set -x\n\e[0mDownloaded and verified checksum in 1 sec(s).\nExtracting...\n\e[91m+ + ELAPSED_TIME=1\n\e[0m\e[91m+ echo 'Downloaded and verified checksum in 1 sec(s).'\n\e[0m\e[91m+ + echo Extracting...\n\e[0m\e[91m+ START_TIME=1\n\e[0m\e[91m+ mkdir -p /opt/python/3.8.16\n\e[0m\e[91m+ + tar -xzf python-bullseye-3.8.16.tar.gz -C /opt/python/3.8.16\n\e[0m\e[91m+ + rm -f python-bullseye-3.8.16.tar.gz\r\n\e[0m\e[91m+ ELAPSED_TIME=2\n\e[0mExtracted + contents in 2 sec(s).\n\e[91m+ echo 'Extracted contents in 2 sec(s).'\n\e[0m\e[91m+ + '[' python == python ']'\n+ '[' -d /opt/python/3.8.16 ']'\n\e[0m\e[91m+ echo + /opt/python/3.8.16/lib\n+ ldconfig\n\e[0m\e[91m+ '[' '' '!=' false ']'\n\e[0m\e[91m+ + cd /opt/python\n+ IFS=.\n\e[0m\e[91m+ read -ra VERSION_PARTS\n\e[0m\e[91m+ + MAJOR_MINOR=3.8\n\e[0m\e[91m+ echo\n\e[0m\e[91m+ echo 'Created link from 3.8 + to 3.8.16'\n\e[0m\nCreated link from 3.8 to 3.8.16\n\e[91m+ ln -sfn 3.8.16 + 3.8\n\e[0m\e[91m+ '[' -d /opt/python/3.8.16 ']'\n\e[0m\e[91m+ echo /opt/python/3.8.16/lib\n+ + ldconfig\n\e[0m\e[91m+ cd /opt/python\n+ ln -s 3.8.16 3.8\n\e[0m\e[91m+ ln + -s 3.8.16 latest\n\e[0m\e[91m+ ln -s 3.8.16 stable\n\e[0m\e[91m+ PLATFORM_SETUP_START=37\n\e[0m\nDownloading + and extracting 'nodejs' version '16.20.1' to '/opt/nodejs/16.20.1'...\n\e[91m+ + echo\n+ echo 'Downloading and extracting '\\''nodejs'\\'' version '\\''16.20.1'\\'' + to '\\''/opt/nodejs/16.20.1'\\''...'\n\e[0m\e[91m+ rm -rf /opt/nodejs/16.20.1\n\e[0m\e[91m+ + mkdir -p /opt/nodejs/16.20.1\n\e[0m\e[91m+ cd /opt/nodejs/16.20.1\n\e[0mDetected + image debian flavor: bullseye.\n\e[91m+ PLATFORM_BINARY_DOWNLOAD_START=37\n\e[0m\e[91m+ + platformName=nodejs\n\e[0m\e[91m+ export DEBIAN_FLAVOR=bullseye\n\e[0m\e[91m+ + DEBIAN_FLAVOR=bullseye\n\e[0m\e[91m+ echo 'Detected image debian flavor: bullseye.'\n\e[0m\e[91m+ + '[' bullseye == stretch ']'\n\e[0m\e[91m+ curl -D headers.txt -SL https://oryx-cdn.microsoft.io/nodejs/nodejs-bullseye-16.20.1.tar.gz + --output 16.20.1.tar.gz\n\e[0m\e[91m+ PLATFORM_BINARY_DOWNLOAD_ELAPSED_TIME=0\n\e[0mDownloaded + in 0 sec(s).\n\e[91m+ echo 'Downloaded in 0 sec(s).'\n\e[0m\e[91m+ echo Verifying + checksum...\n\e[0mVerifying checksum...\n\e[91m+ headerName=x-ms-meta-checksum\n\e[0m\e[91m++ + tr -d '\\r'\n\e[0m\e[91m++ grep -i x-ms-meta-checksum:\n\e[0m\e[91m++ cat + headers.txt\n\e[0m\e[91m+ checksumHeader='x-ms-meta-checksum: 82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849'\n\e[0m\e[91m++ + tr '[A-Z]' '[a-z]'\n\e[0m\e[91m++ echo x-ms-meta-checksum: 82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849\n\e[0m\e[91m+ + checksumHeader='x-ms-meta-checksum: 82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849'\n\e[0m\e[91m+ + checksumValue=82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849\n\e[0m\e[91m+ + rm -f headers.txt\n\e[0m\e[91m+ echo Extracting contents...\n\e[0mExtracting + contents...\n\e[91m+ tar -xzf 16.20.1.tar.gz -C .\n\e[0m\e[91m+ '[' nodejs + = golang ']'\n+ echo 'performing sha512 checksum for: nodejs...'\n\e[0mperforming + sha512 checksum for: nodejs...\n\e[91m+ echo '82380b3205396ea5e063ea34edb8c291e701dfea4dc345427cb83aca7b5b7b259d9330537b63be4a891e21184fc99d2617a88d44852c53b9b5c0e2e10e2cc849 + 16.20.1.tar.gz'\n\e[0m\e[91m+ sha512sum -c -\n\e[0m\e[91m+ rm -f 16.20.1.tar.gz\n\e[0m\e[91m+ + PLATFORM_SETUP_ELAPSED_TIME=1\n\e[0mDone in 1 sec(s).\n\n\e[91m+ echo 'Done + in 1 sec(s).'\n+ echo\n+ oryxImageDetectorFile=/opt/oryx/.imagetype\n+ oryxOsDetectorFile=/opt/oryx/.ostype\n+ + '[' -f /opt/oryx/.imagetype ']'\n+ '[' nodejs = dotnet ']'\n+ '[' -f /opt/oryx/.imagetype + ']'\n+ '[' nodejs = dotnet ']'\n+ '[' -f /opt/oryx/.imagetype ']'\n+ '[' nodejs + = nodejs ']'\n+ grep -q vso- /opt/oryx/.imagetype\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype + ']'\n\e[0m\e[91m+ '[' nodejs = php ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype + ']'\n\e[0m\e[91m+ '[' nodejs = python ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype + ']'\n\e[0m\e[91m+ " + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 69043-73138/86091 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:50 GMT + etag: + - '"0x8DB8E1391DDC32E"' + last-modified: + - Wed, 26 Jul 2023 20:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:52 GMT + x-ms-range: + - bytes=73139-77234 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "'[' nodejs = java ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ + '[' nodejs = ruby ']'\n\e[0m\e[91m+ '[' -f /opt/oryx/.imagetype ']'\n\e[0m\e[91m+ + '[' -f /opt/oryx/.ostype ']'\n\e[0m\e[91m+ '[' nodejs = python ']'\n\e[0m\e[91m+ + echo\n+ cd /app\n+ '[' -f /opt/oryx/benv ']'\n+ source /opt/oryx/benv nodejs=16.20.1 + dynamic_install_root_dir=/opt\n++ read benvEnvironmentVariable\n+++ grep -i + '^dynamic_install_root_dir='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ set -- DYNAMIC_INSTALL_ROOT_DIR=/opt + nodejs=16.20.1 dynamic_install_root_dir=/opt\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m++ + read benvEnvironmentVariable\n\e[0m\e[91m+++ set\n\e[0m\e[91m+++ grep -i '^php='\n\e[0m\e[91m++ + read benvEnvironmentVariable\n\e[0m\e[91m+++ set\n\e[0m\e[91m+++ grep -i '^composer='\n\e[0m\e[91m++ + read benvEnvironmentVariable\n\e[0m\e[91m+++ set\n\e[0m\e[91m+++ grep -i '^python='\n\e[0m\e[91m++ + read benvEnvironmentVariable\n\e[0m\e[91m+++ grep -i '^node='\n\e[0m\e[91m+++ + set\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ set\n\e[0m\e[91m+++ + grep -i '^dotnet='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + grep -i '^hugo='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + set\n\e[0m\e[91m+++ grep -i '^ruby='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + grep -i '^golang='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + set\n\e[0m\e[91m+++ grep -i '^java='\n\e[0m\e[91m++ read benvEnvironmentVariable\n\e[0m\e[91m+++ + grep -i '^maven='\n\e[0m\e[91m+++ set\n\e[0m\e[91m++ unset benvEnvironmentVariable\n\e[0m\e[91m+++ + benv-getDynamicInstallRootDir DYNAMIC_INSTALL_ROOT_DIR=/opt nodejs=16.20.1 + dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ local explicitDynamicInstallRootDir=\n\e[0m\e[91m+++ + [[ DYNAMIC_INSTALL_ROOT_DIR=/opt = *\\=* ]]\n\e[0m\e[91m++++ sed 's/=.*$//'\n\e[0m\e[91m++++ + echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ local name=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++++ + sed 's/^.*=//'\n\e[0m\e[91m++++ echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ + local value=/opt\n\e[0m\e[91m+++ matchesName dynamic_install_root_dir DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m+++ + local expectedName=dynamic_install_root_dir\n\e[0m\e[91m+++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m+++ + local result=\n\e[0m\e[91m+++ shopt -s nocasematch\n\e[0m\e[91m+++ [[ dynamic_install_root_dir + == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m+++ result=0\n\e[0m\e[91m+++ shopt -u nocasematch\n\e[0m\e[91m+++ + return 0\n\e[0m\e[91m+++ explicitDynamicInstallRootDir=/opt\n\e[0m\e[91m+++ + shift\n\e[0m\e[91m+++ [[ nodejs=16.20.1 = *\\=* ]]\n\e[0m\e[91m++++ sed 's/=.*$//'\n\e[0m\e[91m++++ + echo nodejs=16.20.1\n\e[0m\e[91m+++ local name=nodejs\n\e[0m\e[91m++++ echo + nodejs=16.20.1\n\e[0m\e[91m++++ sed 's/^.*=//'\n\e[0m\e[91m+++ local value=16.20.1\n\e[0m\e[91m+++ + matchesName dynamic_install_root_dir nodejs\n\e[0m\e[91m+++ local expectedName=dynamic_install_root_dir\n+++ + local providedName=nodejs\n\e[0m\e[91m+++ local result=\n+++ shopt -s nocasematch\n\e[0m\e[91m+++ + [[ dynamic_install_root_dir == \\n\\o\\d\\e\\j\\s ]]\n+++ result=1\n\e[0m\e[91m+++ + shopt -u nocasematch\n\e[0m\e[91m+++ return 1\n\e[0m\e[91m+++ shift\n+++ [[ + dynamic_install_root_dir=/opt = *\\=* ]]\n\e[0m\e[91m++++ echo dynamic_install_root_dir=/opt\n\e[0m\e[91m++++ + sed 's/=.*$//'\n\e[0m\e[91m+++ local name=dynamic_install_root_dir\n\e[0m\e[91m++++ + sed 's/^.*=//'\n\e[0m\e[91m++++ echo dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ + local value=/opt\n\e[0m\e[91m+++ matchesName dynamic_install_root_dir dynamic_install_root_dir\n\e[0m\e[91m+++ + local expectedName=dynamic_install_root_dir\n+++ local providedName=dynamic_install_root_dir\n\e[0m\e[91m+++ + local result=\n\e[0m\e[91m+++ shopt -s nocasematch\n+++ [[ dynamic_install_root_dir + == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n\e[0m\e[91m+++ result=0\n\e[0m\e[91m+++ shopt -u nocasematch\n+++ return + 0\n+++ explicitDynamicInstallRootDir=/opt\n\e[0m\e[91m+++ shift\n+++ [[ '' + = *\\=* ]]\n\e[0m\e[91m+++ '[' -z /opt ']'\n\e[0m\e[91m+++ echo /opt\n\e[0m\e[91m++ + _benvDynamicInstallRootDir=/opt\n\e[0m\e[91m++ [[ DYNAMIC_INSTALL_ROOT_DIR=/opt + = *\\=* ]]\n\e[0m\e[91m++ benv-resolve DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m+++ + sed 's/=.*$//'\n\e[0m\e[91m+++ echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m++ + local name=DYNAMIC_INSTA" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 73139-77234/86091 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:50 GMT + etag: + - '"0x8DB8E1391DDC32E"' + last-modified: + - Wed, 26 Jul 2023 20:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:52 GMT + x-ms-range: + - bytes=77235-81330 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "LL_ROOT_DIR\n\e[0m\e[91m+++ sed 's/^.*=//'\n\e[0m\e[91m+++ echo DYNAMIC_INSTALL_ROOT_DIR=/opt\n\e[0m\e[91m++ + local value=/opt\n\e[0m\e[91m++ matchesName nodejs DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ + local expectedName=nodejs\n\e[0m\e[91m++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ + local result=\n\e[0m\e[91m++ shopt -s nocasematch\n\e[0m\e[91m++ [[ nodejs + == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m++ result=1\n++ shopt -u nocasematch\n++ return 1\n\e[0m\e[91m++ + matchesName node DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local expectedName=node\r\n\e[0m\e[91m++ + local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local result=\n++ + shopt -s nocasematch\n\e[0m\e[91m++ [[ node == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ + return 1\n\e[0m\e[91m++ matchesName node_version DYNAMIC_INSTALL_ROOT_DIR\n++ + local expectedName=node_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ node_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=python\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n\e[0m\e[91m++ shopt -s nocasematch\n\e[0m\e[91m++ [[ python + == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n\e[0m\e[91m++ return 1\n++ matchesName + python_version DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local expectedName=python_version\n\e[0m\e[91m++ + local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ + shopt -s nocasematch\n++ [[ python_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n\e[0m\e[91m++ return 1\n\e[0m\e[91m++ + matchesName hugo DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=hugo\n\e[0m\e[91m++ + local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ local result=\n\e[0m\e[91m++ + shopt -s nocasematch\n\e[0m\e[91m++ [[ hugo == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n++ return + 1\n++ matchesName hugo_version DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local + expectedName=hugo_version\n\e[0m\e[91m++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ + local result=\n\e[0m\e[91m++ shopt -s nocasematch\n\e[0m\e[91m++ [[ hugo_version + == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n\e[0m\e[91m++ matchesName + php DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local expectedName=php\n\e[0m\e[91m++ + local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ local result=\n++ + shopt -s nocasematch\n++ [[ php == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName php_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=php_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ php_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=composer\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ composer == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=composer_version\n++ local + providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ local result=\n++ shopt -s nocasematch\n++ + [[ composer_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=dotnet\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ dotnet == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=dotnet_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasemat" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 77235-81330/86091 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:50 GMT + etag: + - '"0x8DB8E1391DDC32E"' + last-modified: + - Wed, 26 Jul 2023 20:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:53 GMT + x-ms-range: + - bytes=81331-85426 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "ch\n++ [[ dotnet_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName golang + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=golang\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ golang == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName golang_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=golang_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ golang_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=ruby\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ ruby == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=ruby_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ ruby_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=java\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n\e[0m\e[91m++ + local result=\n++ shopt -s nocasematch\n++ [[ java == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=java_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ java_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=maven\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ maven == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven_version + DYNAMIC_INSTALL_ROOT_DIR\n++ local expectedName=maven_version\n++ local providedName=DYNAMIC_INSTALL_ROOT_DIR\n++ + local result=\n++ shopt -s nocasematch\n++ [[ maven_version == \\D\\Y\\N\\A\\M\\I\\C\\_\\I\\N\\S\\T\\A\\L\\L\\_\\R\\O\\O\\T\\_\\D\\I\\R + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ eval export 'DYNAMIC_INSTALL_ROOT_DIR='\\''/opt'\\'''\n+++ + export DYNAMIC_INSTALL_ROOT_DIR=/opt\n+++ DYNAMIC_INSTALL_ROOT_DIR=/opt\n++ + shift\n++ [[ nodejs=16.20.1 = *\\=* ]]\n++ benv-resolve nodejs=16.20.1\n+++ + echo nodejs=16.20.1\n+++ sed 's/=.*$//'\n\e[0m\e[91m++ local name=nodejs\n\e[0m\e[91m+++ + echo nodejs=16.20.1\n\e[0m\e[91m+++ sed 's/^.*=//'\n\e[0m\e[91m++ local value=16.20.1\n\e[0m\e[91m++ + matchesName nodejs nodejs\n\e[0m\e[91m++ local expectedName=nodejs\n\e[0m\e[91m++ + local providedName=nodejs\n\e[0m\e[91m++ local result=\n\e[0m\e[91m++ shopt + -s nocasematch\n\e[0m\e[91m++ [[ nodejs == \\n\\o\\d\\e\\j\\s ]]\n++ result=0\n++ + shopt -u nocasematch\n++ return 0\n++ '[' 1 '!=' / ']'\n+++ benv-getPlatformDir + nodejs 16.20.1 /opt\n\e[0m\e[91m+++ local platformDirName=nodejs\n\e[0m\e[91m+++ + local userSuppliedVersion=16.20.1\n\e[0m\e[91m+++ local dynamicInstallRootDir=/opt\n+++ + local builtInInstallDir=/opt/nodejs\n\e[0m\e[91m+++ local dynamicInstallDir=/opt/nodejs\n+++ + '[' -d /opt/nodejs/16.20.1 ']'\n+++ echo /opt/nodejs/16.20.1\n\e[0m\e[91m++ + platformDir=/opt/nodejs/16.20.1\n\e[0m\e[91m++ '[' /opt/nodejs/16.20.1 == + NotFound ']'\n\e[0m\e[91m++ local DIR=/opt/nodejs/16.20.1/bin\n\e[0m\e[91m++ + updatePath /opt/nodejs/16.20.1/bin\n\e[0m\e[91m++ '[' '' == true ']'\n\e[0m\e[91m++ + export PATH=/opt/nodejs/16.20.1/bin:/usr/local/go/bin:/opt/python/latest/bin:/opt/oryx:/opt/yarn/stable/bin:/opt/hugo/lts:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n\e[0m\e[91m++ + PATH=/opt/nodejs/16.20.1/bin:/usr/local/go/bin:/opt/python/latest/bin:/opt/oryx:/opt/yarn/stable/bin:/opt/hugo/lts:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n\e[0m\e[91m++ + export node=/opt/nodejs/16.20.1/bin/node\n++ node=/opt/node" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 81331-85426/86091 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:50 GMT + etag: + - '"0x8DB8E1391DDC32E"' + last-modified: + - Wed, 26 Jul 2023 20:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:53 GMT + x-ms-range: + - bytes=85427-89522 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "js/16.20.1/bin/node\n++ export npm=/opt/nodejs/16.20.1/bin/npm\n++ + npm=/opt/nodejs/16.20.1/bin/npm\n++ '[' -e /opt/nodejs/16.20.1/bin/npx ']'\n++ + export npx=/opt/nodejs/16.20.1/bin/npx\n++ npx=/opt/nodejs/16.20.1/bin/npx\n++ + return 0\n++ shift\n++ [[ dynamic_install_root_dir=/opt = *\\=* ]]\n++ benv-resolve + dynamic_install_root_dir=/opt\n+++ echo dynamic_install_root_dir=/opt\n+++ + sed 's/=.*$//'\n\e[0m\e[91m++ local name=dynamic_install_root_dir\n\e[0m\e[91m+++ + echo dynamic_install_root_dir=/opt\n\e[0m\e[91m+++ sed 's/^.*=//'\n\e[0m\e[91m++ + local value=/opt\n++ matchesName nodejs dynamic_install_root_dir\n++ local + expectedName=nodejs\n++ local providedName=dynamic_install_root_dir\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '664' + content-range: + - bytes 85427-86090/86091 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:50 GMT + etag: + - '"0x8DB8E1391DDC32E"' + last-modified: + - Wed, 26 Jul 2023 20:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:53 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '86091' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:51 GMT + etag: + - '"0x8DB8E1391DDC32E"' + last-modified: + - Wed, 26 Jul 2023 20:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '30' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:55 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '93992' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:53 GMT + etag: + - '"0x8DB8E139327058E"' + last-modified: + - Wed, 26 Jul 2023 20:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:55 GMT + x-ms-range: + - bytes=86091-90186 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "\e[0m\e[91m++ local result=\n\e[0m\e[91m++ shopt -s nocasematch\n\e[0m\e[91m++ + [[ nodejs == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n\e[0m\e[91m++ + return 1\n\e[0m\e[91m++ matchesName node dynamic_install_root_dir\n++ local + expectedName=node\n++ local providedName=dynamic_install_root_dir\n++ local + result=\n++ shopt -s nocasematch\n++ [[ node == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n\e[0m\e[91m++ result=1\n\e[0m\e[91m++ shopt -u nocasematch\n++ return + 1\n++ matchesName node_version dynamic_install_root_dir\n++ local expectedName=node_version\n++ + local providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s + nocasematch\n++ [[ node_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python + dynamic_install_root_dir\n++ local expectedName=python\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ python == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName python_version + dynamic_install_root_dir\n++ local expectedName=python_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ python_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName hugo + dynamic_install_root_dir\n++ local expectedName=hugo\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ hugo == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName hugo_version + dynamic_install_root_dir\n++ local expectedName=hugo_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ hugo_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName php + dynamic_install_root_dir\n++ local expectedName=php\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ php == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName php_version + dynamic_install_root_dir\n++ local expectedName=php_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ php_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer + dynamic_install_root_dir\n++ local expectedName=composer\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ composer == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName composer_version + dynamic_install_root_dir\n++ local expectedName=composer_version\n++ local + providedName=dynamic_install_root_dir\n++ local result=\n++ shopt -s nocasematch\n++ + [[ composer_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet + dynamic_install_root_dir\n++ local expectedName=dotnet\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ dotnet == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName dotnet_version + dynamic_install_root_dir\n++ local expectedName=dotnet_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ dotnet_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName golang + dynamic_install_root_dir\n++ local expectedName=golang\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ golang == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName golang_version + dynamic_install_root_dir\n++ local expectedName=golang_version\n++ local pro" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4096' + content-range: + - bytes 86091-90186/93992 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:53 GMT + etag: + - '"0x8DB8E139327058E"' + last-modified: + - Wed, 26 Jul 2023 20:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:55 GMT + x-ms-range: + - bytes=90187-94282 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "videdName=dynamic_install_root_dir\n++ local result=\n++ shopt -s nocasematch\n++ + [[ golang_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby + dynamic_install_root_dir\n++ local expectedName=ruby\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ ruby == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName ruby_version + dynamic_install_root_dir\n++ local expectedName=ruby_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ ruby_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java + dynamic_install_root_dir\n++ local expectedName=java\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ java == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName java_version + dynamic_install_root_dir\n++ local expectedName=java_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ java_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n\e[0m\e[91m++ return 1\n++ matchesName + maven dynamic_install_root_dir\n++ local expectedName=maven\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ maven == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ matchesName maven_version + dynamic_install_root_dir\n++ local expectedName=maven_version\n++ local providedName=dynamic_install_root_dir\n++ + local result=\n++ shopt -s nocasematch\n++ [[ maven_version == \\d\\y\\n\\a\\m\\i\\c\\_\\i\\n\\s\\t\\a\\l\\l\\_\\r\\o\\o\\t\\_\\d\\i\\r + ]]\n++ result=1\n++ shopt -u nocasematch\n++ return 1\n++ eval export 'dynamic_install_root_dir='\\''/opt'\\'''\n+++ + export dynamic_install_root_dir=/opt\n+++ dynamic_install_root_dir=/opt\n++ + shift\n++ [[ '' = *\\=* ]]\n++ '[' /tmp/BuildScriptGenerator/c1cce18f879145f69e3ae9d6b6a7c432/build.sh + '!=' /opt/oryx/benv ']'\n++ unset -f benv-resolve benv-versions\n++ '[' 0 + -gt 0 ']'\n+ export SOURCE_DIR\n+ export DESTINATION_DIR\n+ mkdir -p /output\n\e[0m\e[91m+ + cd /app\n+ COMMAND_MANIFEST_FILE=/app/oryx-build-commands.txt\n+ echo 'Removing + existing manifest file'\n+ rm -f /app/oryx-build-commands.txt\n\e[0mRemoving + existing manifest file\n\e[91m+ echo 'Creating directory for command manifest + file if it does not exist'\n\e[0mCreating directory for command manifest file + if it does not exist\n\e[91m++ dirname /app/oryx-build-commands.txt\n\e[0m\e[91m+ + mkdir -p /app\n\e[0mCreating a manifest file...\n\e[91m+ echo 'Creating a + manifest file...'\n+ echo 'PlatformWithVersion=Node.js 16.20.1'\n+ echo 'Node + Build Command Manifest file created.'\n+ doc='https://docs.microsoft.com/en-us/azure/app-service/configure-language-nodejs?pivots=platform-linux#troubleshooting'\n+ + echo\n+ echo 'Using Node version:'\n+ node --version\n\e[0mNode Build Command + Manifest file created.\n\nUsing Node version:\nv16.20.1\n\e[91m+ echo\n+ echo + BuildCommands=\n+ echo Using Npm version:\n+ npm --version\n\e[0m\nUsing Npm + version:\n8.19.4\n\e[91m+ zippedModulesFileName=\n+ allModulesDirName=.oryx_all_node_modules\n+ + prodModulesDirName=.oryx_prod_node_modules\n+ PruneDevDependencies=false\n+ + HasProdDependencies=true\n+ HasDevDependencies=false\n+ packageDirName=\n\e[0m\e[91m+ + '[' -d .oryx_all_node_modules ']'\n+ '[' false == true ']'\n\e[0m\e[91m++ + whoami\n\e[0m\e[91m+ [[ root == \\r\\o\\o\\t ]]\n+ chown -R root:root /app\n\e[0m\e[91m+ + cd /app\n\e[0m\e[91m+ echo\n\e[0m\e[91m+ echo 'Running '\\''npm install'\\''...'\n\e[0m\e[91m+ + echo\n\e[0m\e[91m+ printf %s ', npm install'\n\e[0m\e[91m+ npm install\n\e[0m\nRunning + 'npm install'...\n\n\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '3805' + content-range: + - bytes 90187-93991/93992 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:53 GMT + etag: + - '"0x8DB8E139327058E"' + last-modified: + - Wed, 26 Jul 2023 20:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:55 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '93992' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:53 GMT + etag: + - '"0x8DB8E139327058E"' + last-modified: + - Wed, 26 Jul 2023 20:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:04:58 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '93992' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:56 GMT + etag: + - '"0x8DB8E139327058E"' + last-modified: + - Wed, 26 Jul 2023 20:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:00 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '93992' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:58 GMT + etag: + - '"0x8DB8E139327058E"' + last-modified: + - Wed, 26 Jul 2023 20:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:04 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '93992' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:02 GMT + etag: + - '"0x8DB8E139327058E"' + last-modified: + - Wed, 26 Jul 2023 20:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '31' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:08 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98083' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:05 GMT + etag: + - '"0x8DB8E139B23A953"' + last-modified: + - Wed, 26 Jul 2023 20:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '33' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:08 GMT + x-ms-range: + - bytes=93992-98087 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "added 54 packages, and audited 55 packages in 2s\n\n4 vulnerabilities + (3 high, 1 critical)\n\e[91mnpm notice \n\e[0m\nTo address all issues (including + breaking changes), run:\n npm audit fix --force\n\nRun `npm audit` for details.\n\e[91mnpm + notice New major version of npm available! 8.19.4 -> 9.8.1\n\e[0m\e[91mnpm + notice Changelog: \n\e[0m\e[91mnpm + notice Run `npm install -g npm@9.8.1` to update!\n\e[0m\e[91mnpm notice \n\e[0m\e[91m++ + cat /opt/oryx/.imagetype\n\e[0m\e[91m+ ReadImageType=cli\n+ '[' cli = vso-focal + ']'\n\e[0m\e[91m+ '[' cli = vso-debian-bullseye ']'\n+ rm /app/oryx-build-commands.txt\n\e[0m\e[91m+ + cd /app\n\e[0m\e[91m+ '[' false == true ']'\n+ '[' /app '!=' /output ']'\n+ + echo 'Preparing output...'\n\e[0m\e[91m+ cd /app\n+ echo\n+ echo 'Copying + files to destination directory '\\''/output'\\''...'\n+ START_TIME=40\n+ excludedDirectories=\n+ + excludedDirectories+=' --exclude .oryx_all_node_modules'\n+ excludedDirectories+=' + --exclude .oryx_prod_node_modules'\n+ excludedDirectories+=' --exclude .git'\n+ + rsync -rcE --links --exclude .oryx_all_node_modules --exclude .oryx_prod_node_modules + --exclude .git . /output\n\e[0mPreparing output...\n\nCopying files to destination + directory '/output'...\nDone in 0 sec(s).\n\e[91m+ ELAPSED_TIME=0\n+ echo + 'Done in 0 sec(s).'\n+ MANIFEST_FILE=oryx-manifest.toml\n+ MANIFEST_DIR=\n\e[0m\e[91m+ + '[' -z '' ']'\n+ MANIFEST_DIR=/output\n+ mkdir -p /output\n\e[0m\e[91m+ echo\n\e[0m\e[91m+ + echo 'Removing existing manifest file'\n+ rm -f /output/oryx-manifest.toml\n\e[0m\nRemoving + existing manifest file\n\e[91m+ echo 'Creating a manifest file...'\n+ echo + 'NodeVersion=\"16.20.1\"'\n\e[0mCreating a manifest file...\n\e[91m+ echo + 'nodeBuildCommandsFile=\"/app/oryx-build-commands.txt\"'\n\e[0m\e[91m+ echo + 'Frameworks=\"Express\"'\n\e[0m\e[91m+ echo 'OperationId=\"e8f48cbf9baa82db\"'\n\e[0m\e[91m+ + echo 'SourceDirectoryInBuildContainer=\"/app\"'\n\e[0m\e[91m+ echo 'PlatformName=\"nodejs\"'\n\e[0m\e[91m+ + echo 'CompressDestinationDir=\"false\"'\n\e[0m\e[91m+ echo 'Manifest file + created.'\n\e[0m\e[91m+ OS_TYPE_SOURCE_DIR=/opt/oryx/.ostype\n\e[0m\e[91m+ + '[' -f /opt/oryx/.ostype ']'\n\e[0m\e[91m+ echo 'Copying .ostype to manifest + output directory.'\n+ cp /opt/oryx/.ostype /output/.ostype\n\e[0mManifest + file created.\nCopying .ostype to manifest output directory.\n\e[91m+ TOTAL_EXECUTION_ELAPSED_TIME=40\n\e[0m\nDone + in 40 sec(s).\n\e[91m+ echo\n\e[0m\e[91m+ echo 'Done in 40 sec(s).'\n\e[0mRemoving + intermediate container 08da1fb9280a\n ---> 3918cf6286d3\nStep 6/10 : FROM + mcr.microsoft.com/oryx/${RUNTIME}\r\n18: Pulling from oryx/node\n34df401c391c: + Already exists\n6fdd0e5b72cc: Already exists\n3e667686bcfb: Pulling fs layer\n08fee8e7f70d: + Pulling fs layer\naa649acedacd: Pulling fs layer\n7c35038c535d: Pulling fs + layer\nb34377fff786: Pulling fs layer\ned5b52acd5ef: Pulling fs layer\nba9f3006808a: + Pulling fs layer\ne154da39ba4c: Pulling fs layer\nfadd7ccb0a4b: Pulling fs + layer\nd9793d6f4f08: Pulling fs layer\n6720aab929c9: Pulling fs layer\n32deea1a7492: + Pulling fs layer\n1d9087acb1e1: Pulling fs layer\n1a6da6a96e94: Pulling fs + layer\ne7ee06712709: Pulling fs layer\n13a1a3ecc9ed: Pulling fs layer\n7c35038c535d: + Waiting\nb34377fff786: Waiting\ned5b52acd5ef: Waiting\nba9f3006808a: Waiting\ne154da39ba4c: + Waiting\nfadd7ccb0a4b: Waiting\nd9793d6f4f08: Waiting\n6720aab929c9: Waiting\n32deea1a7492: + Waiting\n1d9087acb1e1: Waiting\n1a6da6a96e94: Waiting\ne7ee06712709: Waiting\n13a1a3ecc9ed: + Waiting\n3e667686bcfb: Download complete\naa649acedacd: Verifying Checksum\naa649acedacd: + Download complete\n3e667686bcfb: Pull complete\nb34377fff786: Verifying Checksum\nb34377fff786: + Download complete\ned5b52acd5ef: Download complete\nba9f3006808a: Verifying + Checksum\nba9f3006808a: Download complete\ne154da39ba4c: Verifying Checksum\ne154da39ba4c: + Download complete\nfadd7ccb0a4b: Verifying Checksum\nfadd7ccb0a4b: Download + complete\n7c35038c535d: Verifying Checksum\n7c35038c535d: Download complete\n6720aab929c9: + Verifying Checksum\n6720aab929c9: Download complete\nd9793d6f4f08: Verifying + Checksum\nd9793d6f4f08: Download complete\n1d9087acb1e1: Verifying Checksum\n1d9087acb1e1: + Download complete\n32deea1a7492: Verifying Checksum\n32deea1a7492: Download + complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '4091' + content-range: + - bytes 93992-98082/98083 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:06 GMT + etag: + - '"0x8DB8E139B23A953"' + last-modified: + - Wed, 26 Jul 2023 20:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '33' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:08 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98083' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:06 GMT + etag: + - '"0x8DB8E139B23A953"' + last-modified: + - Wed, 26 Jul 2023 20:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '33' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:10 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98083' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:08 GMT + etag: + - '"0x8DB8E139B23A953"' + last-modified: + - Wed, 26 Jul 2023 20:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '33' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:13 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98214' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:11 GMT + etag: + - '"0x8DB8E139E2D7041"' + last-modified: + - Wed, 26 Jul 2023 20:05:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '34' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:13 GMT + x-ms-range: + - bytes=98083-102178 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "1a6da6a96e94: Verifying Checksum\n1a6da6a96e94: Download complete\n13a1a3ecc9ed: + Verifying Checksum\n13a1a3ecc9ed: Download complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '131' + content-range: + - bytes 98083-98213/98214 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:11 GMT + etag: + - '"0x8DB8E139E2D7041"' + last-modified: + - Wed, 26 Jul 2023 20:05:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '34' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:13 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98214' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:11 GMT + etag: + - '"0x8DB8E139E2D7041"' + last-modified: + - Wed, 26 Jul 2023 20:05:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '34' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:16 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98214' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:14 GMT + etag: + - '"0x8DB8E139E2D7041"' + last-modified: + - Wed, 26 Jul 2023 20:05:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '34' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98564' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:16 GMT + etag: + - '"0x8DB8E13A0AC2177"' + last-modified: + - Wed, 26 Jul 2023 20:05:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '35' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:18 GMT + x-ms-range: + - bytes=98214-102309 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "e7ee06712709: Verifying Checksum\ne7ee06712709: Download complete\n08fee8e7f70d: + Download complete\n08fee8e7f70d: Pull complete\naa649acedacd: Pull complete\n7c35038c535d: + Pull complete\nb34377fff786: Pull complete\ned5b52acd5ef: Pull complete\nba9f3006808a: + Pull complete\ne154da39ba4c: Pull complete\nfadd7ccb0a4b: Pull complete\nd9793d6f4f08: + Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '350' + content-range: + - bytes 98214-98563/98564 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:16 GMT + etag: + - '"0x8DB8E13A0AC2177"' + last-modified: + - Wed, 26 Jul 2023 20:05:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '35' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:18 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98564' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:16 GMT + etag: + - '"0x8DB8E13A0AC2177"' + last-modified: + - Wed, 26 Jul 2023 20:05:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '35' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:21 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98621' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:18 GMT + etag: + - '"0x8DB8E13A200FAE6"' + last-modified: + - Wed, 26 Jul 2023 20:05:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '36' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:21 GMT + x-ms-range: + - bytes=98564-102659 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "6720aab929c9: Pull complete\n32deea1a7492: Pull complete\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '57' + content-range: + - bytes 98564-98620/98621 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:18 GMT + etag: + - '"0x8DB8E13A200FAE6"' + last-modified: + - Wed, 26 Jul 2023 20:05:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '36' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:21 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '98621' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:19 GMT + etag: + - '"0x8DB8E13A200FAE6"' + last-modified: + - Wed, 26 Jul 2023 20:05:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '36' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99127' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:21 GMT + etag: + - '"0x8DB8E13A36EFE21"' + last-modified: + - Wed, 26 Jul 2023 20:05:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '37' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:23 GMT + x-ms-range: + - bytes=98621-102716 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "1d9087acb1e1: Pull complete\n1a6da6a96e94: Pull complete\ne7ee06712709: + Pull complete\n13a1a3ecc9ed: Pull complete\nDigest: sha256:7fee6a0b0d209e9a6b9846d86e1ded3fcd5815db5fe55c6e52ed91f2eed153d2\nStatus: + Downloaded newer image for mcr.microsoft.com/oryx/node:18\n ---> e1a67efca8d5\nStep + 7/10 : WORKDIR /app\n ---> Running in 808c8ed05942\nRemoving intermediate + container 808c8ed05942\n ---> b448182f85fc\nStep 8/10 : COPY --from=build + /output .\n ---> 45d86623715f\nStep 9/10 : RUN oryx create-script -bindPort + 8080\r\n ---> Running in 5d61bac7ae51\nFound build manifest file at '/app/oryx-manifest.toml'. + Deserializing it...\nBuild Operation ID: e8f48cbf9baa82db\nEnvironment Variables + for Application Insight's IPA Codeless Configuration exists..\nWriting output + script to 'run.sh'\nRemoving intermediate container 5d61bac7ae51\n ---> ca2a4dea3092\nStep + 10/10 : ENTRYPOINT [\"/app/run.sh\"]\n ---> Running in 6c42fbc7b940\nRemoving + intermediate container 6c42fbc7b940\n ---> 4355993d95fd\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '966' + content-range: + - bytes 98621-99586/99587 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:21 GMT + etag: + - '"0x8DB8E13A4C81CB0"' + last-modified: + - Wed, 26 Jul 2023 20:05:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '38' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:23 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '99587' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:21 GMT + etag: + - '"0x8DB8E13A4C81CB0"' + last-modified: + - Wed, 26 Jul 2023 20:05:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '38' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:26 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101135' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:24 GMT + etag: + - '"0x8DB8E13A618FF05"' + last-modified: + - Wed, 26 Jul 2023 20:05:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:26 GMT + x-ms-range: + - bytes=99587-103682 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "Successfully built 4355993d95fd\nSuccessfully tagged containerapp000004.azurecr.io/containerapp000003:20230726130320284043\n2023/07/26 + 20:05:22 Successfully executed container: acb_step_1\n2023/07/26 20:05:22 + Executing step ID: acb_step_2. Timeout(sec): 1800, Working directory: '', + Network: 'acb_default_network'\n2023/07/26 20:05:22 Pushing image: containerapp000004.azurecr.io/containerapp000003:20230726130320284043, + attempt 1\nThe push refers to repository [containerapp000004.azurecr.io/containerapp000003]\nbf2fece03b0e: + Preparing\n69b48717ca8a: Preparing\n5241c805f2eb: Preparing\nbe531adc4648: + Preparing\n9fb21ae5905f: Preparing\n9470ed8f29bd: Preparing\n07de6e17726e: + Preparing\nc375a178c1dc: Preparing\n00ca1a725dca: Preparing\nfb9f97f45be9: + Preparing\n75a70e7e603e: Preparing\nfaf30a27d538: Preparing\n4898cf716b40: + Preparing\ne16a8163ca1d: Preparing\nafe87d16b16f: Preparing\n7241e0193a24: + Preparing\nc2963cac91e6: Preparing\n438f35b71861: Preparing\nd3ca9c4508e6: + Preparing\n42369e26e6d6: Preparing\n3dec696a3faa: Preparing\n4898cf716b40: + Waiting\ne16a8163ca1d: Waiting\nafe87d16b16f: Waiting\n7241e0193a24: Waiting\nc2963cac91e6: + Waiting\n438f35b71861: Waiting\nd3ca9c4508e6: Waiting\n9470ed8f29bd: Waiting\n42369e26e6d6: + Waiting\n07de6e17726e: Waiting\n3dec696a3faa: Waiting\nc375a178c1dc: Waiting\n00ca1a725dca: + Waiting\nfb9f97f45be9: Waiting\n75a70e7e603e: Waiting\nfaf30a27d538: Waiting\nbf2fece03b0e: + Pushed\n9fb21ae5905f: Pushed\n5241c805f2eb: Pushed\nbe531adc4648: Pushed\n69b48717ca8a: + Pushed\n07de6e17726e: Pushed\n9470ed8f29bd: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1512' + content-range: + - bytes 99587-101134/101135 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:24 GMT + etag: + - '"0x8DB8E13A618FF05"' + last-modified: + - Wed, 26 Jul 2023 20:05:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:26 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101135' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:24 GMT + etag: + - '"0x8DB8E13A618FF05"' + last-modified: + - Wed, 26 Jul 2023 20:05:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '39' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:29 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101220' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:26 GMT + etag: + - '"0x8DB8E13A77FD746"' + last-modified: + - Wed, 26 Jul 2023 20:05:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '40' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:29 GMT + x-ms-range: + - bytes=101135-105230 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "75a70e7e603e: Pushed\nfaf30a27d538: Pushed\n4898cf716b40: Pushed\n00ca1a725dca: + Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '85' + content-range: + - bytes 101135-101219/101220 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:27 GMT + etag: + - '"0x8DB8E13A77FD746"' + last-modified: + - Wed, 26 Jul 2023 20:05:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '40' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:29 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101220' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:27 GMT + etag: + - '"0x8DB8E13A77FD746"' + last-modified: + - Wed, 26 Jul 2023 20:05:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '40' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:32 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101368' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:29 GMT + etag: + - '"0x8DB8E13A974F917"' + last-modified: + - Wed, 26 Jul 2023 20:05:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '41' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:32 GMT + x-ms-range: + - bytes=101220-105315 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "e16a8163ca1d: Pushed\nc375a178c1dc: Pushed\nafe87d16b16f: Pushed\n7241e0193a24: + Pushed\nc2963cac91e6: Pushed\nd3ca9c4508e6: Pushed\n438f35b71861: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '148' + content-range: + - bytes 101220-101367/101368 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:29 GMT + etag: + - '"0x8DB8E13A974F917"' + last-modified: + - Wed, 26 Jul 2023 20:05:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '41' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:32 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101368' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:29 GMT + etag: + - '"0x8DB8E13A974F917"' + last-modified: + - Wed, 26 Jul 2023 20:05:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '41' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:34 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101390' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:32 GMT + etag: + - '"0x8DB8E13AABBF1B2"' + last-modified: + - Wed, 26 Jul 2023 20:05:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '42' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:34 GMT + x-ms-range: + - bytes=101368-105463 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "42369e26e6d6: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '22' + content-range: + - bytes 101368-101389/101390 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:32 GMT + etag: + - '"0x8DB8E13AABBF1B2"' + last-modified: + - Wed, 26 Jul 2023 20:05:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '42' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:34 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101390' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:32 GMT + etag: + - '"0x8DB8E13AABBF1B2"' + last-modified: + - Wed, 26 Jul 2023 20:05:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '42' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:37 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101390' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:34 GMT + etag: + - '"0x8DB8E13AABBF1B2"' + last-modified: + - Wed, 26 Jul 2023 20:05:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '42' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:39 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101433' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:37 GMT + etag: + - '"0x8DB8E13AD09D58E"' + last-modified: + - Wed, 26 Jul 2023 20:05:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '43' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:39 GMT + x-ms-range: + - bytes=101390-105485 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "fb9f97f45be9: Pushed\n3dec696a3faa: Pushed\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '43' + content-range: + - bytes 101390-101432/101433 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:37 GMT + etag: + - '"0x8DB8E13AD09D58E"' + last-modified: + - Wed, 26 Jul 2023 20:05:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '43' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:40 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '101433' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:37 GMT + etag: + - '"0x8DB8E13AD09D58E"' + last-modified: + - Wed, 26 Jul 2023 20:05:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '43' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:42 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102833' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:40 GMT + etag: + - '"0x8DB8E13AEBB40FD"' + last-modified: + - Wed, 26 Jul 2023 20:05:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '45' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:42 GMT + x-ms-range: + - bytes=101433-105528 + x-ms-version: + - '2018-11-09' + method: GET + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: "20230726130320284043: digest: sha256:7d67ec4a358c12686a67ecddaa72c9a7fe01e8c6cb14479191460a71b442e3db + size: 4716\n2023/07/26 20:05:37 Successfully pushed image: containerapp000004.azurecr.io/containerapp000003:20230726130320284043\n2023/07/26 + 20:05:37 Step ID: acb_step_0 marked as successful (elapsed time in seconds: + 12.782217)\n2023/07/26 20:05:37 Step ID: acb_step_1 marked as successful (elapsed + time in seconds: 82.970982)\n2023/07/26 20:05:37 Populating digests for step + ID: acb_step_1...\n2023/07/26 20:05:38 Successfully populated digests for + step ID: acb_step_1\n2023/07/26 20:05:38 Step ID: acb_step_2 marked as successful + (elapsed time in seconds: 14.592872)\n2023/07/26 20:05:38 The following dependencies + were found:\n2023/07/26 20:05:38 \n- image:\n registry: containerapp000004.azurecr.io\n + \ repository: containerapp000003\n tag: \"20230726130320284043\"\n digest: + sha256:7d67ec4a358c12686a67ecddaa72c9a7fe01e8c6cb14479191460a71b442e3db\n + \ runtime-dependency:\n registry: mcr.microsoft.com\n repository: oryx/node\n + \ tag: \"18\"\n digest: sha256:7fee6a0b0d209e9a6b9846d86e1ded3fcd5815db5fe55c6e52ed91f2eed153d2\n + \ buildtime-dependency:\n - registry: mcr.microsoft.com\n repository: + oryx/cli\n tag: debian-bullseye-stable\n digest: sha256:9da0586bddf951653dbca665361c8be7bebfeff49d55b66795cf7ca613b8d8ba\n + \ git: {}\n\r\nRun ID: ca1 was successful after 1m55s\r\n" + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '1376' + content-range: + - bytes 101433-102832/102833 + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:40 GMT + etag: + - '"0x8DB8E13AEBB40FD"' + last-modified: + - Wed, 26 Jul 2023 20:05:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '45' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) + x-ms-date: + - Wed, 26 Jul 2023 20:05:42 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://eusmanaged53.blob.core.windows.net/865090a077b54ddc8bd5c66e7a4763c6-8iwpdcvlwu/logs/ca1/rawtext.log?sv=2021-12-02&se=2023-07-26T21%3A13%3A43Z&sr=b&sp=r&sig=uZQ8wMCWho65Yc88jduehG2nVjDL7BC3lbEEigtoaMA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-disposition: + - '' + content-encoding: + - utf-8 + content-length: + - '102833' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:40 GMT + etag: + - '"0x8DB8E13AEBB40FD"' + last-modified: + - Wed, 26 Jul 2023 20:05:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '45' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Wed, 26 Jul 2023 20:03:44 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-complete: + - successful + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", + "value": "hKBDym3Bc2ELQvCdLXdLdI8YR2P19HlD5aiXrbRcww+ACRDEYN56"}], "activeRevisionsMode": + "single", "ingress": {"fqdn": null, "external": true, "targetPort": 8080, "transport": + "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", + "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], + "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "containerapp000004.azurecr.io/containerapp000003:20230726130320284043", "name": + "containerapp000003", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1227' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:05:42.1189342Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:05:42.1189342Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.238.189.57"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.blackdesert-2c78c388.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230726130320284043","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/abe32e4b-ed71-4e18-b9b0-8ff40321af55?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '2405' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '699' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/abe32e4b-ed71-4e18-b9b0-8ff40321af55?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/abe32e4b-ed71-4e18-b9b0-8ff40321af55","name":"abe32e4b-ed71-4e18-b9b0-8ff40321af55","status":"InProgress","startTime":"2023-07-26T20:05:42.9855652"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 2B6DD24D674B42F0BAE2AEA2473599C9 Ref B: CO6AA3150218025 Ref C: 2023-07-26T20:05:45Z' + 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 --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/abe32e4b-ed71-4e18-b9b0-8ff40321af55?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/abe32e4b-ed71-4e18-b9b0-8ff40321af55","name":"abe32e4b-ed71-4e18-b9b0-8ff40321af55","status":"InProgress","startTime":"2023-07-26T20:05:42.9855652"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 7EE8902E66F549E8B24365117C3F54AE Ref B: CO6AA3150220045 Ref C: 2023-07-26T20:05:48Z' + 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 --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/abe32e4b-ed71-4e18-b9b0-8ff40321af55?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/abe32e4b-ed71-4e18-b9b0-8ff40321af55","name":"abe32e4b-ed71-4e18-b9b0-8ff40321af55","status":"InProgress","startTime":"2023-07-26T20:05:42.9855652"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 111A0A8184294570A62BE896C868C034 Ref B: CO6AA3150219053 Ref C: 2023-07-26T20:05:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/abe32e4b-ed71-4e18-b9b0-8ff40321af55?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/abe32e4b-ed71-4e18-b9b0-8ff40321af55","name":"abe32e4b-ed71-4e18-b9b0-8ff40321af55","status":"Succeeded","startTime":"2023-07-26T20:05:42.9855652"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E05DBC5123504E0FB4B7DB78477BFC43 Ref B: CO6AA3150218011 Ref C: 2023-07-26T20:05:54Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:05:42.1189342","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:05:42.1189342"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.238.189.57"],"latestRevisionName":"containerapp000003--cmlyqc4","latestReadyRevisionName":"containerapp000003--cmlyqc4","latestRevisionFqdn":"containerapp000003--cmlyqc4.blackdesert-2c78c388.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.blackdesert-2c78c388.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230726130320284043","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2537' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: EC7F565F0DB3478A917E6CD5D942653A Ref B: CO6AA3150219039 Ref C: 2023-07-26T20:05:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: AFF2B5AEB0194D63A04D758FE86239DC Ref B: CO6AA3150220039 Ref C: 2023-07-26T20:05:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:05:42.1189342","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:05:42.1189342"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["20.238.189.57"],"latestRevisionName":"containerapp000003--cmlyqc4","latestReadyRevisionName":"containerapp000003--cmlyqc4","latestRevisionFqdn":"containerapp000003--cmlyqc4.blackdesert-2c78c388.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.blackdesert-2c78c388.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:20230726130320284043","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2537' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:05:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 938564CC5456401D80B244B12AC17481 Ref B: CO6AA3150217011 Ref C: 2023-07-26T20:05:57Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml new file mode 100644 index 00000000000..a2d0da08601 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_source_with_buildpack_e2e.yaml @@ -0,0 +1,3932 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"querypacks","locations":["West Central + US","East US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland + West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia + Central","France South","South India","Korea South","Jio India Central","Jio + India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia East","Australia + Central","France Central","Korea Central","North Europe","Central US","East + Asia","East US 2","South Central US","North Central US","West US","UK West","South + Africa North","Brazil South","Switzerland North","Switzerland West","Germany + West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Switzerland North","Switzerland West","Germany West Central","Australia + Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway + East","Norway West","France South","South India","Korea South","Jio India + Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden + Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia + East","France Central","Korea Central","North Europe","Central US","East Asia","East + US 2","South Central US","North Central US","West US","UK West","South Africa + North","Brazil South","Switzerland North","Switzerland West","Germany West + Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil + Southeast","Norway East","Norway West","France South","South India","Korea + South","Jio India Central","Jio India West","Qatar Central","Canada East","West + US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North + Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '13285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg5o46kqig5lbslefzxqlx7?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"7f37f4bc-32ab-43b8-ab03-238d8478e31e","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T20:02:07.9956342Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T20:02:07.9956342Z","modifiedDate":"2023-07-26T20:02:07.9956342Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg5o46kqig5lbslefzxqlx7","name":"workspace-clitestrg5o46kqig5lbslefzxqlx7","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg5o46kqig5lbslefzxqlx7?api-version=2021-12-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg5o46kqig5lbslefzxqlx7?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"7f37f4bc-32ab-43b8-ab03-238d8478e31e","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-07-26T20:02:07.9956342Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-26T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T20:02:07.9956342Z","modifiedDate":"2023-07-26T20:02:07.9956342Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg5o46kqig5lbslefzxqlx7","name":"workspace-clitestrg5o46kqig5lbslefzxqlx7","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.50.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrg5o46kqig5lbslefzxqlx7/sharedKeys?api-version=2020-08-01 + response: + body: + string: '{"primarySharedKey":"NP+rDaPnuapLiD587xwWBs3kKxgJQ1AjM2LWkzLfaDbPpw+LCpQEDBSgghHlMVXGiABPL63o/q8O+IW+1UnmMQ==","secondarySharedKey":"gKDKXk4OatC8F1KDFH3QOpf6gjyJfgNNNlBp8pt2ddeIPNRxYpXqbCWqSi+JoDbgPuxQh1yzl6d108MlXfYRWg=="}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + cache-control: + - no-cache + content-length: + - '223' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 927C0EEF1CA443F7B987704EFD0863AF Ref B: CO6AA3150218025 Ref C: 2023-07-26T20:02:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westeurope", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "7f37f4bc-32ab-43b8-ab03-238d8478e31e", + "sharedKey": "NP+rDaPnuapLiD587xwWBs3kKxgJQ1AjM2LWkzLfaDbPpw+LCpQEDBSgghHlMVXGiABPL63o/q8O+IW+1UnmMQ=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '450' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.7203863Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.7203863Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangebay-22672191.westeurope.azurecontainerapps.io","staticIp":"51.138.51.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"7f37f4bc-32ab-43b8-ab03-238d8478e31e","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-msedge-ref: + - 'Ref A: 6B2344996DB04307AE9830912E649197 Ref B: CO6AA3150217047 Ref C: 2023-07-26T20:02:09Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B915EADACFA94D8488822993A115481B Ref B: CO6AA3150218037 Ref C: 2023-07-26T20:02:16Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: BF38F48A1C9548CDA29992447B2014BE Ref B: CO6AA3150220025 Ref C: 2023-07-26T20:02:19Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 11E6D0F148DC4BD1B73071E9D2B16958 Ref B: CO6AA3150218009 Ref C: 2023-07-26T20:02:22Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: F6A96BA7FCBF4959BD35ED9FFE8667DC Ref B: CO6AA3150218019 Ref C: 2023-07-26T20:02:25Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: F5E99D3036EF4483A6DB542702E70F32 Ref B: CO6AA3150218019 Ref C: 2023-07-26T20:02:27Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 38E7495B3D0942E9B485305177C57C42 Ref B: CO6AA3150220035 Ref C: 2023-07-26T20:02:29Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 41276579125C43BB9F38E1686B0D7932 Ref B: CO6AA3150217025 Ref C: 2023-07-26T20:02:32Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: F6D85596D2764A5292503B9D9A1807E5 Ref B: CO6AA3150217023 Ref C: 2023-07-26T20:02:35Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 13482200FD404ACCB767FA7838C110C2 Ref B: CO6AA3150217029 Ref C: 2023-07-26T20:02:38Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0CB77660BE3D44ABA1413A1C7C28131C Ref B: CO6AA3150218045 Ref C: 2023-07-26T20:02:41Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 54112E740BC648299353EFAED1102AF0 Ref B: CO6AA3150220047 Ref C: 2023-07-26T20:02:44Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 17A7D4D6D8E8460DBB59DC2E8847BEAF Ref B: CO6AA3150218047 Ref C: 2023-07-26T20:02:47Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: DFF79A03500D40A3BC061F23D0D00D21 Ref B: CO6AA3150219021 Ref C: 2023-07-26T20:02:50Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 11F3A9D5B7994183ABBCBF12F39B7AE1 Ref B: CO6AA3150218009 Ref C: 2023-07-26T20:02:53Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:02:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 2B6A6B483F6A400581734A06543BD279 Ref B: CO6AA3150219049 Ref C: 2023-07-26T20:02:56Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"InProgress","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D7FBA662DF1D4CCABFD57659BFBEB7A1 Ref B: CO6AA3150219009 Ref C: 2023-07-26T20:02:59Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/6329eaf2-375a-4260-856c-04316a4d8656","name":"6329eaf2-375a-4260-856c-04316a4d8656","status":"Succeeded","startTime":"2023-07-26T20:02:15.7204896"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 7CC71E739D24411593DDE8224B9241A1 Ref B: CO6AA3150220053 Ref C: 2023-07-26T20:03:02Z' + 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 -l + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.7203863","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.7203863"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangebay-22672191.westeurope.azurecontainerapps.io","staticIp":"51.138.51.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"7f37f4bc-32ab-43b8-ab03-238d8478e31e","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 59962393ACD14D26BEC9BF2C77644119 Ref B: CO6AA3150219023 Ref C: 2023-07-26T20:03:03Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true, "anonymousPullEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:04.9034727Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6f28b556-2bef-11ee-8d50-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1380' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 0A6B877FF2734E5F917256D3CCCD4559 Ref B: CO6AA3150217019 Ref C: 2023-07-26T20:03:04Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6f28b556-2bef-11ee-8d50-bce92fa43675?api-version=2022-02-01-preview + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2022-02-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/operationStatuses/registries-6f28b556-2bef-11ee-8d50-bce92fa43675?api-version=2022-02-01-preview + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: EB74ABD989A64FE08B1A89424158A04E Ref B: CO6AA3150217019 Ref C: 2023-07-26T20:03:12Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --admin-enabled + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:04.9034727Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 0F2360C133FD4724B85312CD395D5A89 Ref B: CO6AA3150217019 Ref C: 2023-07-26T20:03:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:04.9034727Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2022-02-01-preview + response: + body: + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"PxyfcpLg/3kSx1kgPwmH/StNIhvCqWiggKcCCNvspq+ACRC9WjXJ"},{"name":"password2","value":"jdsg48uGs/f1MXNkdV4Z6cmsjiG0538zusgyjk/DiA+ACRAjdR8/"}]}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '214' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.7203863","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.7203863"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangebay-22672191.westeurope.azurecontainerapps.io","staticIp":"51.138.51.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"7f37f4bc-32ab-43b8-ab03-238d8478e31e","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.7203863","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.7203863"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangebay-22672191.westeurope.azurecontainerapps.io","staticIp":"51.138.51.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"7f37f4bc-32ab-43b8-ab03-238d8478e31e","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 20:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:09.7203863","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:09.7203863"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangebay-22672191.westeurope.azurecontainerapps.io","staticIp":"51.138.51.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"7f37f4bc-32ab-43b8-ab03-238d8478e31e","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1537' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/containerapp000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '234' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ojxkb2kfwx4jux6ao4y3tbamxrer6jnnfpvr3tuggpiizds2xdojcb6rrqfhkldg/providers/Microsoft.ContainerRegistry/registries/containerapp4sm3kmfpl4gh","name":"containerapp4sm3kmfpl4gh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmv2zz2idqv22c2k6tv4jnv5fpi2vggwuegd4ld6pzho5oo7zprlfkdtgh7aq7ok46/providers/Microsoft.ContainerRegistry/registries/containerappscixnekzodz7","name":"containerappscixnekzodz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtfu236h5uocpfn2rarrdfgbibb3nj4ld4pbhrqck63u63sh35xpjcj6cajed2jwd4/providers/Microsoft.ContainerRegistry/registries/containerappbkztncclixt6","name":"containerappbkztncclixt6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6518' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2022-12-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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:04.9034727Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - '2022-12-01' + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 26 Jul 2023 20:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list + response: + body: + string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n + \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n + \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n + \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n + \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n + \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n + \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n + \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n + \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n + \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n + \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n + \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n + \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n + \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n + \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n + \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n + \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n + \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n + \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n + \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n + \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n + \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n + \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n + \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n + \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n + \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n + \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n + \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n + \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n + \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n + \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n + \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n + \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n + \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n + \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n + \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n + \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n + \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n + \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n + \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n + \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n + \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n + \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n + \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n + \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n + \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n + \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n + \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n + \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n + \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n + \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n + \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n + \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n + \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n + \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n + \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n + \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n + \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ ]\n}" + headers: + cache-control: + - max-age=300 + content-length: + - '5624' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:19 GMT + etag: + - '0x8DB8E113417DCF6' + last-modified: + - Wed, 26 Jul 2023 19:47:54 GMT + x-cache: + - TCP_MISS + x-mcr-privacy: + - https://privacy.microsoft.com/en-us/privacystatement + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + x-msedge-ref: + - 'Ref A: 9B823813A1F54D82A9B2F0C5972F3139 Ref B: WSTEDGE1116 Ref C: 2023-07-26T20:03:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://mcr.microsoft.com/v2/oryx/builder/tags/list + response: + body: + string: "{\n \"name\": \"oryx/builder\",\n \"tags\": [\n \"20230118.1\",\n + \ \"20230208.1\",\n \"20230327.1\",\n \"20230403.1\",\n \"20230410.1\",\n + \ \"20230417.1\",\n \"20230420.1\",\n \"20230425.1\",\n \"20230427.1\",\n + \ \"20230501.1\",\n \"20230508.1\",\n \"20230512.2\",\n \"20230512.3\",\n + \ \"20230531.1\",\n \"20230605.1\",\n \"20230609.1\",\n \"20230612.1\",\n + \ \"20230613.1\",\n \"20230614.1\",\n \"20230619.1\",\n \"20230626.1\",\n + \ \"20230626.3\",\n \"20230630.1\",\n \"20230707.1\",\n \"20230707.2\",\n + \ \"20230710.1\",\n \"20230717.2\",\n \"20230720.1\",\n \"20230720.2\",\n + \ \"20230721.1\",\n \"20230724.1\",\n \"build-base-dotnet-sdk-7.0-cbl-mariner2.0\",\n + \ \"build-dotnet-sdk-7.0-cbl-mariner2.0\",\n \"builder-dotnet-7.0\",\n + \ \"buildpack\",\n \"buildpack-20230118.1\",\n \"buildpack-20230208.1\",\n + \ \"buildpack-20230403.1\",\n \"buildpack-20230410.1\",\n \"buildpack-20230417.1\",\n + \ \"buildpack-20230420.1\",\n \"buildpack-20230425.1\",\n \"buildpack-20230427.1\",\n + \ \"buildpack-20230501.1\",\n \"buildpack-20230508.1\",\n \"buildpack-20230512.2\",\n + \ \"buildpack-20230512.3\",\n \"buildpack-20230531.1\",\n \"buildpack-20230605.1\",\n + \ \"buildpack-20230609.1\",\n \"buildpack-20230612.1\",\n \"buildpack-20230613.1\",\n + \ \"buildpack-20230614.1\",\n \"buildpack-20230619.1\",\n \"buildpack-20230626.1\",\n + \ \"buildpack-20230626.3\",\n \"buildpack-20230630.1\",\n \"buildpack-20230707.1\",\n + \ \"buildpack-20230707.2\",\n \"buildpack-20230710.1\",\n \"buildpack-20230717.2\",\n + \ \"buildpack-20230720.1\",\n \"buildpack-20230720.2\",\n \"buildpack-20230721.1\",\n + \ \"buildpack-20230724.1\",\n \"buildpack-dotnet-7.0\",\n \"capps\",\n + \ \"capps-20230327.1\",\n \"capps-20230403.1\",\n \"capps-20230410.1\",\n + \ \"capps-20230417.1\",\n \"capps-20230420.1\",\n \"capps-20230425.1\",\n + \ \"capps-20230427.1\",\n \"capps-20230501.1\",\n \"capps-20230508.1\",\n + \ \"capps-20230512.2\",\n \"capps-20230512.3\",\n \"capps-20230531.1\",\n + \ \"capps-20230605.1\",\n \"capps-20230609.1\",\n \"capps-20230612.1\",\n + \ \"capps-20230613.1\",\n \"capps-20230614.1\",\n \"capps-20230619.1\",\n + \ \"capps-20230626.1\",\n \"capps-20230626.3\",\n \"capps-20230630.1\",\n + \ \"capps-20230707.1\",\n \"capps-20230707.2\",\n \"capps-20230710.1\",\n + \ \"capps-20230717.2\",\n \"capps-20230720.1\",\n \"capps-20230720.2\",\n + \ \"capps-20230721.1\",\n \"capps-20230724.1\",\n \"latest\",\n \"run-dotnet-aspnet-7.0-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.0-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.1-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.2-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.3-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.4-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.5-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.7-cbl-mariner2.0\",\n \"run-dotnet-aspnet-7.0.8-cbl-mariner2.0\",\n + \ \"run-dotnet-aspnet-7.0.9-cbl-mariner2.0\",\n \"stack-base\",\n \"stack-base-20230118.1\",\n + \ \"stack-base-20230208.1\",\n \"stack-base-20230327.1\",\n \"stack-base-20230403.1\",\n + \ \"stack-base-20230410.1\",\n \"stack-base-20230417.1\",\n \"stack-base-20230420.1\",\n + \ \"stack-base-20230425.1\",\n \"stack-base-20230427.1\",\n \"stack-base-20230501.1\",\n + \ \"stack-base-20230508.1\",\n \"stack-base-20230512.2\",\n \"stack-base-20230512.3\",\n + \ \"stack-base-20230531.1\",\n \"stack-base-20230605.1\",\n \"stack-base-20230609.1\",\n + \ \"stack-base-20230612.1\",\n \"stack-base-20230613.1\",\n \"stack-base-20230614.1\",\n + \ \"stack-base-20230619.1\",\n \"stack-base-20230626.1\",\n \"stack-base-20230626.3\",\n + \ \"stack-base-20230630.1\",\n \"stack-base-20230707.1\",\n \"stack-base-20230707.2\",\n + \ \"stack-base-20230710.1\",\n \"stack-base-20230717.2\",\n \"stack-base-20230720.1\",\n + \ \"stack-base-20230720.2\",\n \"stack-base-20230721.1\",\n \"stack-base-20230724.1\",\n + \ \"stack-build\",\n \"stack-build-20230118.1\",\n \"stack-build-20230208.1\",\n + \ \"stack-build-20230327.1\",\n \"stack-build-20230403.1\",\n \"stack-build-20230410.1\",\n + \ \"stack-build-20230417.1\",\n \"stack-build-20230420.1\",\n \"stack-build-20230425.1\",\n + \ \"stack-build-20230427.1\",\n \"stack-build-20230501.1\",\n \"stack-build-20230508.1\",\n + \ \"stack-build-20230512.2\",\n \"stack-build-20230512.3\",\n \"stack-build-20230531.1\",\n + \ \"stack-build-20230605.1\",\n \"stack-build-20230609.1\",\n \"stack-build-20230612.1\",\n + \ \"stack-build-20230613.1\",\n \"stack-build-20230614.1\",\n \"stack-build-20230619.1\",\n + \ \"stack-build-20230626.1\",\n \"stack-build-20230626.3\",\n \"stack-build-20230630.1\",\n + \ \"stack-build-20230707.1\",\n \"stack-build-20230707.2\",\n \"stack-build-20230710.1\",\n + \ \"stack-build-20230717.2\",\n \"stack-build-20230720.1\",\n \"stack-build-20230720.2\",\n + \ \"stack-build-20230721.1\",\n \"stack-build-20230724.1\",\n \"stack-build-cbl-mariner-base-core-2.0\",\n + \ \"stack-run\",\n \"stack-run-20230118.1\",\n \"stack-run-20230208.1\",\n + \ \"stack-run-20230327.1\",\n \"stack-run-20230403.1\",\n \"stack-run-20230410.1\",\n + \ \"stack-run-20230417.1\",\n \"stack-run-20230420.1\",\n \"stack-run-20230425.1\",\n + \ \"stack-run-20230427.1\",\n \"stack-run-20230501.1\",\n \"stack-run-20230508.1\",\n + \ \"stack-run-20230512.2\",\n \"stack-run-20230512.3\",\n \"stack-run-20230531.1\",\n + \ \"stack-run-20230605.1\",\n \"stack-run-20230609.1\",\n \"stack-run-20230612.1\",\n + \ \"stack-run-20230613.1\",\n \"stack-run-20230614.1\",\n \"stack-run-20230619.1\",\n + \ \"stack-run-20230626.1\",\n \"stack-run-20230626.3\",\n \"stack-run-20230630.1\",\n + \ \"stack-run-20230707.1\",\n \"stack-run-20230707.2\",\n \"stack-run-20230710.1\",\n + \ \"stack-run-20230717.2\",\n \"stack-run-20230720.1\",\n \"stack-run-20230720.2\",\n + \ \"stack-run-20230721.1\",\n \"stack-run-20230724.1\",\n \"stack-run-cbl-mariner-base-core-2.0\"\n + \ ]\n}" + headers: + cache-control: + - max-age=300 + content-length: + - '5624' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:21 GMT + etag: + - '0x8DB8E113417DCF6' + last-modified: + - Wed, 26 Jul 2023 19:47:54 GMT + x-cache: + - TCP_MISS + x-mcr-privacy: + - https://privacy.microsoft.com/en-us/privacystatement + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' + x-msedge-ref: + - 'Ref A: 5639CD77290E4B5E95E238663054E766 Ref B: CO1EDGE2918 Ref C: 2023-07-26T20:03:21Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2022-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/snehaparacr","name":"snehaparacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-04-14T20:27:54.6369396Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-14T20:28:21.8108179Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpdghprjjpc6kwgeihgzzebhjspsdefcnidpqyyzhux5ncurqh4egckqnwpa33uxxh/providers/Microsoft.ContainerRegistry/registries/containerappqryv7x5uhoiv","name":"containerappqryv7x5uhoiv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:39:05.7365866Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:39:05.7365866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqlibdm55ix6ba3b3fwzx42ialqihhpolbvot2upvgbijxasduhyxhcmsmhjaeb4h/providers/Microsoft.ContainerRegistry/registries/containerappgkikprcy6ttd","name":"containerappgkikprcy6ttd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T22:56:27.8845172Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T22:56:27.8845172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2sunamio35phn3cfvxbce4g5cmh756gpn672yjthgkqo5ddihkg3fccgsbrm22mb/providers/Microsoft.ContainerRegistry/registries/containerapp3rv7k4d6y2xr","name":"containerapp3rv7k4d6y2xr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-07T23:35:36.3062176Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T23:35:36.3062176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqx7ch2yezsa3hk257jvugynssafroadi5bbpqeriywv6oxfanqu62343ibjoxjoee/providers/Microsoft.ContainerRegistry/registries/containerapp6hma4ujn3guv","name":"containerapp6hma4ujn3guv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T00:13:49.3312571Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T00:13:49.3312571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ca-snehapar-group/providers/Microsoft.ContainerRegistry/registries/ca8d4832ba28acr","name":"ca8d4832ba28acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-10T22:49:37.1654892Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-10T22:49:37.1654892Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ojxkb2kfwx4jux6ao4y3tbamxrer6jnnfpvr3tuggpiizds2xdojcb6rrqfhkldg/providers/Microsoft.ContainerRegistry/registries/containerapp4sm3kmfpl4gh","name":"containerapp4sm3kmfpl4gh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:02:59.8292736Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:02:59.8292736Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmv2zz2idqv22c2k6tv4jnv5fpi2vggwuegd4ld6pzho5oo7zprlfkdtgh7aq7ok46/providers/Microsoft.ContainerRegistry/registries/containerappscixnekzodz7","name":"containerappscixnekzodz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:02.9636836Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:02.9636836Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtfu236h5uocpfn2rarrdfgbibb3nj4ld4pbhrqck63u63sh35xpjcj6cajed2jwd4/providers/Microsoft.ContainerRegistry/registries/containerappbkztncclixt6","name":"containerappbkztncclixt6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:05.4032082Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:05.4032082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqdkhtpcullos7r5kqkhzj5les7w2x6fndlt4cjqjwxadjia7d7imjhg2h2pcyk2w3/providers/Microsoft.ContainerRegistry/registries/containerapp4echypgw4jzl","name":"containerapp4echypgw4jzl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-08T03:14:05.6175559Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-08T03:14:05.6175559Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6518' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:04.9034727Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://containerapp000004.azurecr.io/v2/ + response: + body: + string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, + visit https://aka.ms/acr/authorization for more information.","detail":null}]} + + ' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '149' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:40 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://containerappseirdstg4xa4.azurecr.io/oauth2/token",service="containerappseirdstg4xa4.azurecr.io" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerregistry/10.1.0 Python/3.8.10 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?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/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:04.9034727+00:00","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:04.9034727+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2023-07-26T20:03:04.9034727Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2023-07-26T20:03:12.1931428+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - 2022-02-01-preview + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://containerapp000004.azurecr.io/v2/ + response: + body: + string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, + visit https://aka.ms/acr/authorization for more information.","detail":null}]} + + ' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '149' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:40 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://containerappseirdstg4xa4.azurecr.io/oauth2/token",service="containerappseirdstg4xa4.azurecr.io" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: grant_type=access_token&service=containerappseirdstg4xa4.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyIsImtpZCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjkwMzk5NzY2LCJuYmYiOjE2OTAzOTk3NjYsImV4cCI6MTY5MDQwNDc1MSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2YzOTM4ZTg3LThjMjUtNDExZS1hN2E0LTc5ZjMzMDM1Yjk1ZS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFVBQUFBV2YxTG1rcFZpR0tIUThydVhhTlpVWlZPMVl6TWJhTlJzSkZMVWU2L2VDTU1XYmhnTmtpSjYrYURuUEhJMmFXQWdRendPZjlvVUw0bzl1cjA1S0dtNktka3UybGV3Q0ptejdBWDJJR09KMzQ9IiwiYW1yIjpbInJzYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiZDNlODYyMTQtYmZiMy00ODdiLWE3MGItZWMxYTczZDE2YmQ3IiwiZmFtaWx5X25hbWUiOiJQYXJ0aGFzYXJhdGh5IiwiZ2l2ZW5fbmFtZSI6IlNuZWhhIiwiaXBhZGRyIjoiMjAwMTo0ODk4OjgwZTg6YjoyYTA2OjUyMTg6OTQzNDpkODE0IiwibmFtZSI6IlNuZWhhIFBhcnRoYXNhcmF0aHkiLCJvaWQiOiJmMzkzOGU4Ny04YzI1LTQxMWUtYTdhNC03OWYzMzAzNWI5NWUiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctNTg0NTA2MTEiLCJwdWlkIjoiMTAwMzIwMDIwNjJENTYxMCIsInJoIjoiMC5BUm9BdjRqNWN2R0dyMEdScXkxODBCSGJSMFpJZjNrQXV0ZFB1a1Bhd2ZqMk1CTWFBQWMuIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiVWhsVGZTcVRDUkZVMi1NV2QzY0QzclEzZnZGSWRqUzk1SklWQlZjSTB3ayIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoic25laGFwYXJAbWljcm9zb2Z0LmNvbSIsInVwbiI6InNuZWhhcGFyQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJha3VWcE12YXBVZTVtZE9PTzRrSEFBIiwidmVyIjoiMS4wIiwid2lkcyI6WyJiNzlmYmY0ZC0zZWY5LTQ2ODktODE0My03NmIxOTRlODU1MDkiXSwieG1zX2NjIjpbIkNQMSJdLCJ4bXNfdGNkdCI6MTI4OTI0MTU0N30.aoHPYoiagvl5ep-TGcWhtGIPPRd9RT035DqjkMjFNKfJfYohkVGqr0fiO2iZRwKmB_s2bAP_45fzxkghet8LmeaPG2Tw1tQudRGqHQ5kDk838U-0GylXjvLurQ2aVkoU-CGn1_PpXRTkKMr0hF-vz_SGxLH26wLAXJQFKCc-Pwx2ZCM4cY4nvJFO6DHhK0ZDBtPfxJI2ckoBVQQ9lkjy78CjfavnyMrc1zrsXI_c3zdoSLJ-ERC-6FFZ2570uOF44r5g_EAq1y67D_WVlAF4ytYXxDu4sffHRn4E4XVuVFHxIlDhByNGcw2iqSYEvWVQuFCexwQxnJ2OqMixuyz_dQ + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '2316' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - python-requests/2.26.0 + method: POST + uri: https://containerapp000004.azurecr.io/oauth2/exchange + response: + body: + string: '{"refresh_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkNPQVU6UERZSDo0SVJYOjM2SEI6TFYzUDpWNFBGOko0NzQ6SzNOSjpPS1JCOlRZQUo6NEc0Szo1Q1NEIn0.eyJqdGkiOiJiOGZmMzQ5OC1jNzgxLTRlMDctYWYwZi01NWE0OGY3YTI3MjAiLCJzdWIiOiJzbmVoYXBhckBtaWNyb3NvZnQuY29tIiwibmJmIjoxNjkwNDAwOTIxLCJleHAiOjE2OTA0MTI2MjEsImlhdCI6MTY5MDQwMDkyMSwiaXNzIjoiQXp1cmUgQ29udGFpbmVyIFJlZ2lzdHJ5IiwiYXVkIjoiY29udGFpbmVyYXBwc2VpcmRzdGc0eGE0LmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiYTBkNzFiNjExODYxNDJmOWFlMDk0ZGIyMzA1ZTBlYjAiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwidGVuYW50IjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwicGVybWlzc2lvbnMiOnsiQWN0aW9ucyI6WyJyZWFkIiwid3JpdGUiLCJkZWxldGUiLCJkZWxldGVkL3JlYWQiLCJkZWxldGVkL3Jlc3RvcmUvYWN0aW9uIl0sIk5vdEFjdGlvbnMiOm51bGx9LCJyb2xlcyI6W119.yDlnnzh7HeiiGezxsOh6lqsf5na4b1RZWJv4yWvu2_9Ewh1k2TMPHs9MVEzpcSELBL9lR9JhPO1elAicg8-djbgT2nLP-EncXxk0t8z9ztLYFt8fxfhyfnkOZ5CmRD4ubbxlbPVZGTQFQzz5NmHwtv8rQvJnoTvJRdvKUYbkS_z7sYoGiET4_2XvAYAPN4w8BNZP6qhIXkVpnkZXOVX5A-cmh3Kz-H67xfMfDKwODdvtpR1OhuHJCyamayJdQ7X53Z8yCEEubvecSiR8QWgvvrHNR9WikImmmwTWwDEusIVMu8juMO9fgfclpfKIeituC9rvoDBC_SLV488Y8i1xTg"}' + headers: + connection: + - keep-alive + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:41 GMT + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"location": "West Europe", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", + "value": "PxyfcpLg/3kSx1kgPwmH/StNIhvCqWiggKcCCNvspq+ACRC9WjXJ"}], "activeRevisionsMode": + "single", "ingress": {"fqdn": null, "external": true, "targetPort": 8080, "transport": + "auto", "exposedPort": null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", + "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}], + "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230726130321257835", + "name": "containerapp000003", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1266' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:55.3393878Z","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:55.3393878Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["51.138.48.46"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.orangebay-22672191.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230726130321257835","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d507d887-abeb-45dd-8e2b-931977f8c5e4?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '2441' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '699' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d507d887-abeb-45dd-8e2b-931977f8c5e4?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d507d887-abeb-45dd-8e2b-931977f8c5e4","name":"d507d887-abeb-45dd-8e2b-931977f8c5e4","status":"InProgress","startTime":"2023-07-26T20:03:56.2352641"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:03:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d507d887-abeb-45dd-8e2b-931977f8c5e4?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d507d887-abeb-45dd-8e2b-931977f8c5e4","name":"d507d887-abeb-45dd-8e2b-931977f8c5e4","status":"InProgress","startTime":"2023-07-26T20:03:56.2352641"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04: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 --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d507d887-abeb-45dd-8e2b-931977f8c5e4?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/d507d887-abeb-45dd-8e2b-931977f8c5e4","name":"d507d887-abeb-45dd-8e2b-931977f8c5e4","status":"Succeeded","startTime":"2023-07-26T20:03:56.2352641"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + --source --source --ingress --target-port + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:55.3393878","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:55.3393878"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["51.138.48.46"],"latestRevisionName":"containerapp000003--7sj1w0e","latestReadyRevisionName":"containerapp000003--7sj1w0e","latestRevisionFqdn":"containerapp000003--7sj1w0e.orangebay-22672191.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.orangebay-22672191.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230726130321257835","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2571' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"operations","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11739' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.50.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West + Europe","systemData":{"createdBy":"snehapar@microsoft.com","createdByType":"User","createdAt":"2023-07-26T20:03:55.3393878","lastModifiedBy":"snehapar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T20:03:55.3393878"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"outboundIpAddresses":["51.138.48.46"],"latestRevisionName":"containerapp000003--7sj1w0e","latestReadyRevisionName":"containerapp000003--7sj1w0e","latestRevisionFqdn":"containerapp000003--7sj1w0e.orangebay-22672191.westeurope.azurecontainerapps.io","customDomainVerificationId":"114877694D8D814008DB8FDB1F32EFE919BE6A22ED8C8BEA46658B0401FBAC57","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.orangebay-22672191.westeurope.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null},"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"containerapp000004.azurecr.io/containerapp000003:run-dotnet-aspnet-7.0.9-cbl-mariner2.0-20230726130321257835","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westeurope.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2571' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 20:04:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py index 83859d9cc96..88faa428d5c 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_create.py @@ -13,6 +13,7 @@ TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) class ContainerAppCreateTest(ScenarioTest): + @live_only() @ResourceGroupPreparer(location="eastus") def test_containerapp_create_source_with_Dockerfile_e2e(self, resource_group): source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_dockerfile")) @@ -28,12 +29,14 @@ def test_containerapp_create_source_with_buildpack_e2e(self, resource_group): target_port = '8080' create_and_verify_containerapp_create(self, resource_group=resource_group, source_path=source_path, ingress=ingress, target_port=target_port) + @live_only() @ResourceGroupPreparer(location="eastus") def test_containerapp_create_source_and_image_e2e(self, resource_group): image = "mcr.microsoft.com/dotnet/runtime:7.0" source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_dockerfile")) create_and_verify_containerapp_create(self,resource_group=resource_group, image=image, source_path=source_path) + @live_only() @ResourceGroupPreparer(location="eastus") def test_containerapp_create_source_with_acr_task_e2e(self, resource_group): source_path = os.path.join(TEST_DIR, os.path.join("data", "source_built_using_acr_task"))