From a717aff2f8e367149591d57a1184a2d11b2a3083 Mon Sep 17 00:00:00 2001 From: anfranci Date: Sat, 15 Jul 2023 17:29:02 -0500 Subject: [PATCH 01/11] update start payload format for job execution start to remove template property --- src/containerapp/azext_containerapp/_clients.py | 2 +- src/containerapp/azext_containerapp/_models.py | 6 ++---- src/containerapp/azext_containerapp/custom.py | 3 ++- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/containerapp/azext_containerapp/_clients.py b/src/containerapp/azext_containerapp/_clients.py index 430f40cb066..4a08860c65e 100644 --- a/src/containerapp/azext_containerapp/_clients.py +++ b/src/containerapp/azext_containerapp/_clients.py @@ -15,7 +15,7 @@ logger = get_logger(__name__) -CURRENT_API_VERSION = "2023-04-01-preview" +CURRENT_API_VERSION = "2023-05-02-preview" POLLING_TIMEOUT = 600 # how many seconds before exiting POLLING_SECONDS = 2 # how many seconds between requests POLLING_TIMEOUT_FOR_MANAGED_CERTIFICATE = 1500 # how many seconds before exiting diff --git a/src/containerapp/azext_containerapp/_models.py b/src/containerapp/azext_containerapp/_models.py index e22380a591e..3b2928416ca 100644 --- a/src/containerapp/azext_containerapp/_models.py +++ b/src/containerapp/azext_containerapp/_models.py @@ -206,10 +206,8 @@ # Added template for starting job executions JobExecutionTemplate = { - "template": { - "containers": None, # [Container] - "initContainers": None # [Container] - } + "containers": None, # [Container] + "initContainers": None # [Container] } JobConfiguration = { diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 6d17480d9b3..c70e7561fd6 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -2173,9 +2173,10 @@ def start_containerappsjob(cmd, if resources_def is not None: container_def["resources"] = resources_def - template_def["template"]["containers"] = [container_def] + template_def["containers"] = [container_def] try: + print("Json dump of template_def: {}".format(json.dumps(template_def))) return ContainerAppsJobClient.start_job(cmd=cmd, resource_group_name=resource_group_name, name=name, containerapp_job_start_envelope=template_def) except CLIError as e: handle_raw_exception(e) From 946fa0741b4dcc76303ebdb6eb6d5451177de7bc Mon Sep 17 00:00:00 2001 From: anfranci Date: Sat, 15 Jul 2023 17:29:36 -0500 Subject: [PATCH 02/11] update start payload format for job execution start to remove template property --- src/containerapp/azext_containerapp/_clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containerapp/azext_containerapp/_clients.py b/src/containerapp/azext_containerapp/_clients.py index 4a08860c65e..430f40cb066 100644 --- a/src/containerapp/azext_containerapp/_clients.py +++ b/src/containerapp/azext_containerapp/_clients.py @@ -15,7 +15,7 @@ logger = get_logger(__name__) -CURRENT_API_VERSION = "2023-05-02-preview" +CURRENT_API_VERSION = "2023-04-01-preview" POLLING_TIMEOUT = 600 # how many seconds before exiting POLLING_SECONDS = 2 # how many seconds between requests POLLING_TIMEOUT_FOR_MANAGED_CERTIFICATE = 1500 # how many seconds before exiting From ae74e57cbc35d5e06d13febbe7aa619dee8ab798 Mon Sep 17 00:00:00 2001 From: anfranci Date: Sat, 15 Jul 2023 18:58:44 -0500 Subject: [PATCH 03/11] update start payload format for job execution start to remove template property --- src/containerapp/HISTORY.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst index dcb1fa845e1..08bb52b81e0 100644 --- a/src/containerapp/HISTORY.rst +++ b/src/containerapp/HISTORY.rst @@ -2,6 +2,11 @@ Release History =============== + +Upcoming +++++++ +* 'az containerapp job start': update start execution payload format to exlude template property from API version 05-01-2023-preview onwards + 0.3.36 ++++++ * 'az containerapp hostname bind': fix exception when not bringing --validation-method inputs From 09c29a2f0eb9e4f34fbac0de4f61b8c7069d57f0 Mon Sep 17 00:00:00 2001 From: anfranci Date: Sun, 16 Jul 2023 17:32:39 -0500 Subject: [PATCH 04/11] update start payload format for job execution start to remove template property --- 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 c70e7561fd6..ccd3df065cb 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -2176,7 +2176,6 @@ def start_containerappsjob(cmd, template_def["containers"] = [container_def] try: - print("Json dump of template_def: {}".format(json.dumps(template_def))) return ContainerAppsJobClient.start_job(cmd=cmd, resource_group_name=resource_group_name, name=name, containerapp_job_start_envelope=template_def) except CLIError as e: handle_raw_exception(e) From 242bb3cfde436e34367bd0a8e7e733366563df9c Mon Sep 17 00:00:00 2001 From: anfranci Date: Tue, 18 Jul 2023 20:22:40 -0500 Subject: [PATCH 05/11] update start payload format for job execution start to remove template property --- src/containerapp/azext_containerapp/custom.py | 47 +- ...inerapp_job_custom_executionstest_e2e.yaml | 2390 +++++++++++++++++ ...tom_executionstest_e2e_containerappjob.yml | 21 + .../test_containerappjob_custom_executions.py | 112 + 4 files changed, 2569 insertions(+), 1 deletion(-) create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/test_containerapp_job_custom_executionstest_e2e_containerappjob.yml create mode 100644 src/containerapp/azext_containerapp/tests/latest/test_containerappjob_custom_executions.py diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index ccd3df065cb..9a314803f59 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -2150,7 +2150,16 @@ def start_containerappsjob(cmd, args=None, cpu=None, memory=None, - registry_identity=None): + registry_identity=None, + yaml=None): + + if yaml: + if image or container_name or env_vars or\ + startup_command or args or cpu or memory or\ + startup_command or args: + 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 start_containerappjob_execution_yaml(cmd=cmd, name=name, resource_group_name=resource_group_name, file_name=yaml) + template_def = None if image is not None: @@ -2181,6 +2190,42 @@ def start_containerappsjob(cmd, handle_raw_exception(e) +def start_containerappjob_execution_yaml(cmd, name, resource_group_name, file_name, no_wait=False): + yaml_containerappjob_execution = load_yaml_file(file_name) + if type(yaml_containerappjob_execution) != dict: # pylint: disable=unidiomatic-typecheck + raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapp job execution YAML.') + + containerappjob_def = None + + # Check if containerapp exists + try: + containerappjob_def = ContainerAppsJobClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name) + except Exception: + pass + + if not containerappjob_def: + raise ValidationError("The containerapp job '{}' does not exist".format(name)) + + containerappjobexec_def = None + + # Deserialize the yaml into a ContainerApp job execution object. Need this since we're not using SDK + try: + deserializer = create_deserializer() + containerappjobexec_def = deserializer('JobExecutionTemplate', yaml_containerappjob_execution) + except DeserializationError as ex: + raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapp job execution YAML.') from ex + + containerappjobexec_def = _convert_object_from_snake_to_camel_case(_object_to_dict(containerappjobexec_def)) + + # Clean null values since this is an update + containerappjobexec_def = clean_null_values(containerappjobexec_def) + + try: + return ContainerAppsJobClient.start_job(cmd=cmd, resource_group_name=resource_group_name, name=name, containerapp_job_start_envelope=containerappjobexec_def) + except CLIError as e: + handle_raw_exception(e) + + def stop_containerappsjob(cmd, resource_group_name, name, job_execution_name=None, execution_name_list=None): try: if execution_name_list is not None: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml new file mode 100644 index 00000000000..39265aa06bf --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml @@ -0,0 +1,2390 @@ +interactions: +- request: + body: '{"location": "eastus", "properties": {"retentionInDays": 30, "sku": {"name": + "PerGB2018"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - monitor log-analytics workspace create + Connection: + - keep-alive + Content-Length: + - '91' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-19T00:36:52.1280065Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-19T02:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-19T00:36:52.1280065Z","modifiedDate":"2023-07-19T00:36:52.1280065Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '851' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:36:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - monitor log-analytics workspace create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview + response: + body: + string: '{"properties":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-19T00:36:52.1280065Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-19T02:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-19T00:36:52.1280065Z","modifiedDate":"2023-07-19T00:36:52.1280065Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + headers: + access-control-allow-origin: + - '*' + api-supported-versions: + - 2021-12-01-preview + cache-control: + - no-cache + content-length: + - '851' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:36:51 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + 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: + - monitor log-analytics workspace get-shared-keys + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01 + response: + body: + string: '{"primarySharedKey":"fIQNnUtxtlDIruYNVAsXUV03aP68Ce6gFD9hQewN9K8MlxWmmDia6Ccf07L2aHJ11gI/1Ss2fbsW9UtxbDD0LQ==","secondarySharedKey":"zPaxAN6k6d3ZBYP7ed1wWbWXXxI3kLEzw61c5Zhp8NrUzpaehvyxBfbk6INNbV18lWdJjb01WRrqayQof1iOtw=="}' + 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, 19 Jul 2023 00:36:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + 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":"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":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central US EUAP","East + US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe"],"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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: + - '12831' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:36:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + 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":"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":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central US EUAP","East + US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe"],"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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: + - '12831' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:36:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + 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":"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":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central US EUAP","East + US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe"],"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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: + - '12831' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:36:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + 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":"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":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central US EUAP","East + US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe"],"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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: + - '12831' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:36:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "northcentralusstage", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "91ca653a-7a75-464c-b09f-4245d8b7f799", + "sharedKey": "fIQNnUtxtlDIruYNVAsXUV03aP68Ce6gFD9hQewN9K8MlxWmmDia6Ccf07L2aHJ11gI/1Ss2fbsW9UtxbDD0LQ=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '459' + Content-Type: + - application/json + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.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":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1570' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:36:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320","name":"77797813-96a8-499c-91d2-01eea521c320","status":"InProgress","startTime":"2023-07-19T00:36:56.4974213"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '297' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:36:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320","name":"77797813-96a8-499c-91d2-01eea521c320","status":"InProgress","startTime":"2023-07-19T00:36:56.4974213"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '297' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:36: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 --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320","name":"77797813-96a8-499c-91d2-01eea521c320","status":"Succeeded","startTime":"2023-07-19T00:36:56.4974213"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '296' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:37:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.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":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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: + - '1570' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:37: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 env show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + 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":"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":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central US EUAP","East + US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe"],"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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: + - '12831' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:37: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.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":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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: + - '1570' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:37: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + 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":"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":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central US EUAP","East + US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe"],"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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: + - '12831' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:37:30 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 env show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.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":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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: + - '1570' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:37: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + 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":"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":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central US EUAP","East + US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe"],"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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: + - '12831' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:37:34 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 job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.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":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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: + - '1570' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + 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":"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":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central US EUAP","East + US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe"],"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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: + - '12831' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "North Central US (Stage)", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": null, "triggerType": "manual", "replicaTimeout": + 200, "replicaRetryLimit": 1, "manualTriggerConfig": {"replicaCompletionCount": + 1, "parallelism": 1}, "scheduleTriggerConfig": null, "eventTriggerConfig": null, + "registries": null, "dapr": null}, "template": {"containers": [{"image": "mcr.microsoft.com/k8se/quickstart:latest", + "name": "job3000003", "command": null, "args": null, "env": null, "resources": + {"cpu": 0.25, "memory": "0.5Gi"}, "volumeMounts": null}], "initContainers": + null, "volumes": null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job create + Connection: + - keep-alive + Content-Length: + - '853' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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/North + Central US (Stage)/containerappsjobOperationStatuses/bda02902-1e77-4f38-b3c3-43617a630ea5?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1363' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-ratelimit-remaining-subscription-resource-requests: + - '499' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1361' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1360' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + 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":"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":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-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":["Central US EUAP","East + US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe"],"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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","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":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: + - '12831' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1360' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38: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: '{"containers": [{"image": "mcr.microsoft.com/k8se/quickstart:latest", "name": + "job3-custom-exec", "command": null, "args": null, "env": null, "resources": + {"cpu": 0.5, "memory": "1Gi"}, "volumeMounts": null}], "initContainers": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job start + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --image --container-name --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/start?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-3ak2290","name":"job3000003-3ak2290"}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '190' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job execution show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --job-execution-name + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-3ak2290?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-3ak2290","name":"job3000003-3ak2290","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-19T00:38:29+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3-custom-exec","resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[]}}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '471' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38: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 job start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --yaml + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1360' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38: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: '{"containers": [{"image": "mcr.microsoft.com/k8se/quickstart-jobs:latest", + "name": "test-yaml-execution", "env": [{"name": "MY_ENV_VAR", "value": "hello"}], + "resources": {"cpu": 0.5, "memory": "1Gi"}}], "initContainers": [{"image": "k8seteste2e.azurecr.io/e2e-apps/kuar:green", + "name": "simple-sleep-container", "command": ["/bin/sh", "-c", "sleep 10"], + "resources": {"cpu": 0.25, "memory": "0.5Gi"}}]}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job start + Connection: + - keep-alive + Content-Length: + - '402' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --yaml + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/start?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-zw8pwvi","name":"job3000003-zw8pwvi"}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '190' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38: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-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job execution show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --job-execution-name + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-zw8pwvi?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-zw8pwvi","name":"job3000003-zw8pwvi","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-19T00:38:31+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"test-yaml-execution","env":[{"name":"MY_ENV_VAR","value":"hello"}],"resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[{"image":"k8seteste2e.azurecr.io/e2e-apps/kuar:green","name":"simple-sleep-container","command":["/bin/sh","-c","sleep + 10"],"resources":{"cpu":0.250,"memory":"0.5Gi","ephemeralStorage":""}}]}}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Jul 2023 00:38: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 +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_job_custom_executionstest_e2e_containerappjob.yml b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_job_custom_executionstest_e2e_containerappjob.yml new file mode 100644 index 00000000000..d30783a63a2 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_job_custom_executionstest_e2e_containerappjob.yml @@ -0,0 +1,21 @@ + + containers: + - env: + - name: MY_ENV_VAR + value: hello + image: mcr.microsoft.com/k8se/quickstart-jobs:latest + name: test-yaml-execution + resources: + cpu: 0.5 + memory: 1Gi + initContainers: + - command: + - /bin/sh + - -c + - sleep 10 + image: k8seteste2e.azurecr.io/e2e-apps/kuar:green + name: simple-sleep-container + resources: + cpu: "0.25" + memory: 0.5Gi + \ No newline at end of file diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_custom_executions.py b/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_custom_executions.py new file mode 100644 index 00000000000..163fff148a4 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_custom_executions.py @@ -0,0 +1,112 @@ +# -------------------------------------------------------------------------------------------- +# 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 time + +from azure.cli.testsdk.scenario_tests import AllowLargeResponse +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, JMESPathCheck, live_only, StorageAccountPreparer) +from azext_containerapp.tests.latest.common import (write_test_file, clean_up_test_file) + +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) + +from azext_containerapp.tests.latest.common import TEST_LOCATION +from .utils import create_containerapp_env + +class ContainerAppJobsCustomExecutionsTest(ScenarioTest): + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="northcentralus") + def test_containerapp_job_custom_executionstest_e2e(self, resource_group): + import requests + + TEST_LOCATION = "northcentralusstage" + self.cmd('configure --defaults location={}'.format(TEST_LOCATION)) + + env = self.create_random_name(prefix='env', length=24) + job = self.create_random_name(prefix='job3', length=24) + + create_containerapp_env(self, env, resource_group) + + # create a container app environment for a Container App Job resource + self.cmd('containerapp env show -n {} -g {}'.format(env, resource_group), checks=[ + JMESPathCheck('name', env) + ]) + + # create a Container App Job resource + self.cmd("az containerapp job create --resource-group {} --name {} --environment {} --replica-timeout 200 --replica-retry-limit 1 --trigger-type manual --replica-completion-count 1 --parallelism 1 --image mcr.microsoft.com/k8se/quickstart:latest --cpu '0.25' --memory '0.5Gi'".format(resource_group, job, env)) + + # wait for 60s for the job to be provisioned + jobProvisioning = True + timeout = time.time() + 60*1 # 1 minutes from now + while(jobProvisioning): + jobProvisioning = self.cmd("az containerapp job show --resource-group {} --name {}".format(resource_group, job)).get_output_in_json()['properties']['provisioningState'] != "Succeeded" + if(time.time() > timeout): + break + + # start an execution with custom container information + customContainerImage = "mcr.microsoft.com/k8se/quickstart:latest" + customContainerName = "job3-custom-exec" + execution = self.cmd("az containerapp job start --resource-group {} --name {} --image {} --container-name {} --cpu '0.5' --memory '1Gi'".format(resource_group, job, customContainerImage, customContainerName)).get_output_in_json() + if "id" in execution: + # check if the job execution id is in the response + self.assertEqual(job in execution['id'], True) + if "name" in execution: + # check if the job execution name is in the response + self.assertEqual(job in execution['name'], True) + + # get the execution and check if the custom container information is present + self.cmd("az containerapp job execution show --resource-group {} --name {} --job-execution-name {}".format(resource_group, job, execution['name']), checks=[ + JMESPathCheck('properties.template.containers[0].name', customContainerName), + JMESPathCheck('properties.template.containers[0].image', customContainerImage), + JMESPathCheck('properties.template.containers[0].resources.cpu', '0.5'), + JMESPathCheck('properties.template.containers[0].resources.memory', '1Gi') + ]) + + # yaml file to start a job execution + containerappjobexecution_yaml_text = f""" + containers: + - env: + - name: MY_ENV_VAR + value: hello + image: mcr.microsoft.com/k8se/quickstart-jobs:latest + name: test-yaml-execution + resources: + cpu: 0.5 + memory: 1Gi + initContainers: + - command: + - /bin/sh + - -c + - sleep 10 + image: k8seteste2e.azurecr.io/e2e-apps/kuar:green + name: simple-sleep-container + resources: + cpu: "0.25" + memory: 0.5Gi + """ + containerappjob_file_name = f"{self._testMethodName}_containerappjob.yml" + write_test_file(containerappjob_file_name, containerappjobexecution_yaml_text) + + # start job execution with yaml file + execution = self.cmd("az containerapp job start --resource-group {} --name {} --yaml {}".format(resource_group, job, containerappjob_file_name)).get_output_in_json() + + if "id" in execution: + # check if the job execution id is in the response + self.assertEqual(job in execution['id'], True) + if "name" in execution: + # check if the job execution name is in the response + self.assertEqual(job in execution['name'], True) + + # get the execution and check if the custom container information is present + self.cmd("az containerapp job execution show --resource-group {} --name {} --job-execution-name {}".format(resource_group, job, execution['name']), checks=[ + JMESPathCheck('properties.template.containers[0].name', "test-yaml-execution"), + JMESPathCheck('properties.template.containers[0].image', "mcr.microsoft.com/k8se/quickstart-jobs:latest"), + JMESPathCheck('properties.template.containers[0].resources.cpu', '0.5'), + JMESPathCheck('properties.template.containers[0].resources.memory', '1Gi'), + JMESPathCheck('properties.template.initContainers[0].name', "simple-sleep-container"), + JMESPathCheck('properties.template.initContainers[0].image', "k8seteste2e.azurecr.io/e2e-apps/kuar:green"), + JMESPathCheck('properties.template.initContainers[0].resources.cpu', '0.25'), + JMESPathCheck('properties.template.initContainers[0].resources.memory', '0.5Gi') + ]) \ No newline at end of file From f21764297882ac375ba90f35966197283d0efba3 Mon Sep 17 00:00:00 2001 From: anfranci Date: Tue, 18 Jul 2023 20:43:57 -0500 Subject: [PATCH 06/11] update start payload format for job execution start to remove template property --- src/containerapp/azext_containerapp/custom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 9a314803f59..6139b5c63ef 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -2152,14 +2152,14 @@ def start_containerappsjob(cmd, memory=None, registry_identity=None, yaml=None): - + if yaml: if image or container_name or env_vars or\ startup_command or args or cpu or memory or\ startup_command or args: 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 start_containerappjob_execution_yaml(cmd=cmd, name=name, resource_group_name=resource_group_name, file_name=yaml) - + template_def = None if image is not None: From 6f63dcece986880e83a69b1dd298b5c869d28df2 Mon Sep 17 00:00:00 2001 From: anfranci Date: Wed, 26 Jul 2023 18:13:51 -0500 Subject: [PATCH 07/11] fix job exec input --- src/containerapp/HISTORY.rst | 2 +- ...t_containerapp_job_executionstest_e2e.yaml | 565 +++++++++++------- .../test_containerappjob_custom_executions.py | 112 ---- .../latest/test_containerappjob_executions.py | 85 ++- 4 files changed, 445 insertions(+), 319 deletions(-) delete mode 100644 src/containerapp/azext_containerapp/tests/latest/test_containerappjob_custom_executions.py diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst index 08bb52b81e0..730377b951d 100644 --- a/src/containerapp/HISTORY.rst +++ b/src/containerapp/HISTORY.rst @@ -5,7 +5,7 @@ Release History Upcoming ++++++ -* 'az containerapp job start': update start execution payload format to exlude template property from API version 05-01-2023-preview onwards +* 'az containerapp job start': update start execution payload format to exlude template property from API version 2023-05-01-preview onwards 0.3.36 ++++++ diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml index b106ec3514f..855931fc6de 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml @@ -23,7 +23,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"ae37666f-6aef-49fa-84eb-45ad88985ebe","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-06-29T17:34:17.9602706Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-06-30T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-06-29T17:34:17.9602706Z","modifiedDate":"2023-06-29T17:34:17.9602706Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:09:57.1696915Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T06:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T23:09:57.1696915Z","modifiedDate":"2023-07-26T23:09:57.1696915Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -36,7 +36,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:17 GMT + - Wed, 26 Jul 2023 23:09:57 GMT expires: - '-1' location: @@ -75,7 +75,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"ae37666f-6aef-49fa-84eb-45ad88985ebe","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-06-29T17:34:17.9602706Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-06-30T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-06-29T17:34:17.9602706Z","modifiedDate":"2023-06-29T17:34:17.9602706Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:09:57.1696915Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T06:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T23:09:57.1696915Z","modifiedDate":"2023-07-26T23:09:57.1696915Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -88,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:17 GMT + - Wed, 26 Jul 2023 23:09:57 GMT expires: - '-1' pragma: @@ -129,7 +129,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01 response: body: - string: '{"primarySharedKey":"m+4cCN3V8DXU18u7bPboanMO57MFVwyesFSN0rY+l6VoZFzH9bPMEQfHmVDDQv62zZH67ZrhzWzsNAtT43TgFg==","secondarySharedKey":"9kd7RMVJLdMxUhNRYGIGm4nte3SticNizERe/1LATr2XR1ZIyElzYWKt7GG8euM0OcP5b2hbXMK5HkmZlcMhvA=="}' + string: '{"primarySharedKey":"iy2r46jrkotqhSziOQUo/xvVh7YKLgyuifXF29XAdjRG4Iks5f1T3Sywkz1xPJO8qZ4H6eh6bl9LHlaMhXEQpw==","secondarySharedKey":"+xH18/oMtZF9P/Rdo+1e8vVve4uDnPO1BYN1XarTBCowY5D7HtNTqlD9DxatiuNql3wdczIV4S4ISsxif33lSQ=="}' headers: access-control-allow-origin: - '*' @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:18 GMT + - Wed, 26 Jul 2023 23:09:57 GMT expires: - '-1' pragma: @@ -273,21 +273,27 @@ interactions: US","East Asia","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":["Central US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East US","East Asia","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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"}' + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: - - '12338' + - '12831' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:18 GMT + - Wed, 26 Jul 2023 23:09:58 GMT expires: - '-1' pragma: @@ -410,21 +416,27 @@ interactions: US","East Asia","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":["Central US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East US","East Asia","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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"}' + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: - - '12338' + - '12831' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:19 GMT + - Wed, 26 Jul 2023 23:09:58 GMT expires: - '-1' pragma: @@ -547,21 +559,27 @@ interactions: US","East Asia","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":["Central US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East US","East Asia","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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"}' + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: - - '12338' + - '12831' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:19 GMT + - Wed, 26 Jul 2023 23:09:58 GMT expires: - '-1' pragma: @@ -684,21 +702,27 @@ interactions: US","East Asia","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":["Central US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East US","East Asia","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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"}' + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: - - '12338' + - '12831' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:20 GMT + - Wed, 26 Jul 2023 23:09:58 GMT expires: - '-1' pragma: @@ -715,8 +739,8 @@ interactions: - request: body: '{"location": "eastus", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "ae37666f-6aef-49fa-84eb-45ad88985ebe", - "sharedKey": "m+4cCN3V8DXU18u7bPboanMO57MFVwyesFSN0rY+l6VoZFzH9bPMEQfHmVDDQv62zZH67ZrhzWzsNAtT43TgFg=="}}, + "logAnalyticsConfiguration": {"customerId": "f756c5da-0fd8-4139-8944-981db6f31c78", + "sharedKey": "iy2r46jrkotqhSziOQUo/xvVh7YKLgyuifXF29XAdjRG4Iks5f1T3Sywkz1xPJO8qZ4H6eh6bl9LHlaMhXEQpw=="}}, "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": false}}' headers: @@ -742,21 +766,21 @@ 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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:21.3596413Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:21.3596413Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudwater-2d202a11.eastus.azurecontainerapps.io","staticIp":"20.246.191.149","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"ae37666f-6aef-49fa-84eb-45ad88985ebe","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1528' + - '1529' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:22 GMT + - Wed, 26 Jul 2023 23:10:01 GMT expires: - '-1' pragma: @@ -793,10 +817,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4","name":"11a5c682-50fe-49a2-a8ac-24dcd45facb4","status":"InProgress","startTime":"2023-06-29T17:34:23.430742"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -804,11 +828,11 @@ interactions: cache-control: - no-cache content-length: - - '283' + - '284' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:23 GMT + - Wed, 26 Jul 2023 23:10:02 GMT expires: - '-1' pragma: @@ -845,10 +869,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4","name":"11a5c682-50fe-49a2-a8ac-24dcd45facb4","status":"InProgress","startTime":"2023-06-29T17:34:23.430742"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -856,11 +880,11 @@ interactions: cache-control: - no-cache content-length: - - '283' + - '284' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:26 GMT + - Wed, 26 Jul 2023 23:10:04 GMT expires: - '-1' pragma: @@ -897,10 +921,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4","name":"11a5c682-50fe-49a2-a8ac-24dcd45facb4","status":"InProgress","startTime":"2023-06-29T17:34:23.430742"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -908,11 +932,11 @@ interactions: cache-control: - no-cache content-length: - - '283' + - '284' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:28 GMT + - Wed, 26 Jul 2023 23:10:07 GMT expires: - '-1' pragma: @@ -949,10 +973,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4","name":"11a5c682-50fe-49a2-a8ac-24dcd45facb4","status":"InProgress","startTime":"2023-06-29T17:34:23.430742"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -960,11 +984,11 @@ interactions: cache-control: - no-cache content-length: - - '283' + - '284' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:31 GMT + - Wed, 26 Jul 2023 23:10:10 GMT expires: - '-1' pragma: @@ -1001,10 +1025,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4","name":"11a5c682-50fe-49a2-a8ac-24dcd45facb4","status":"InProgress","startTime":"2023-06-29T17:34:23.430742"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1012,11 +1036,115 @@ interactions: cache-control: - no-cache content-length: - - '283' + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:10:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:10:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '284' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:34 GMT + - Wed, 26 Jul 2023 23:10:17 GMT expires: - '-1' pragma: @@ -1053,10 +1181,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/11a5c682-50fe-49a2-a8ac-24dcd45facb4","name":"11a5c682-50fe-49a2-a8ac-24dcd45facb4","status":"Succeeded","startTime":"2023-06-29T17:34:23.430742"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1064,11 +1192,63 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '284' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:36 GMT + - Wed, 26 Jul 2023 23:10:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"Succeeded","startTime":"2023-07-26T23:10:01.7309613"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '283' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:10:22 GMT expires: - '-1' pragma: @@ -1109,7 +1289,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:21.3596413","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:21.3596413"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudwater-2d202a11.eastus.azurecontainerapps.io","staticIp":"20.246.191.149","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"ae37666f-6aef-49fa-84eb-45ad88985ebe","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1117,11 +1297,11 @@ interactions: cache-control: - no-cache content-length: - - '1528' + - '1529' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:37 GMT + - Wed, 26 Jul 2023 23:10:23 GMT expires: - '-1' pragma: @@ -1250,21 +1430,27 @@ interactions: US","East Asia","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":["Central US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East US","East Asia","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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"}' + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: - - '12338' + - '12831' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:37 GMT + - Wed, 26 Jul 2023 23:10:23 GMT expires: - '-1' pragma: @@ -1299,7 +1485,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:21.3596413","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:21.3596413"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudwater-2d202a11.eastus.azurecontainerapps.io","staticIp":"20.246.191.149","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"ae37666f-6aef-49fa-84eb-45ad88985ebe","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1307,11 +1493,11 @@ interactions: cache-control: - no-cache content-length: - - '1528' + - '1529' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:37 GMT + - Wed, 26 Jul 2023 23:10:24 GMT expires: - '-1' pragma: @@ -1440,21 +1626,27 @@ interactions: US","East Asia","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":["Central US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East US","East Asia","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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"}' + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: - - '12338' + - '12831' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:38 GMT + - Wed, 26 Jul 2023 23:10:24 GMT expires: - '-1' pragma: @@ -1489,7 +1681,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:21.3596413","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:21.3596413"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudwater-2d202a11.eastus.azurecontainerapps.io","staticIp":"20.246.191.149","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"ae37666f-6aef-49fa-84eb-45ad88985ebe","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1497,11 +1689,11 @@ interactions: cache-control: - no-cache content-length: - - '1528' + - '1529' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:38 GMT + - Wed, 26 Jul 2023 23:10:24 GMT expires: - '-1' pragma: @@ -1631,21 +1823,27 @@ interactions: US","East Asia","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":["Central US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East US","East Asia","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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"}' + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: - - '12338' + - '12831' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:39 GMT + - Wed, 26 Jul 2023 23:10:25 GMT expires: - '-1' pragma: @@ -1681,7 +1879,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:21.3596413","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:21.3596413"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"proudwater-2d202a11.eastus.azurecontainerapps.io","staticIp":"20.246.191.149","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"ae37666f-6aef-49fa-84eb-45ad88985ebe","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1689,11 +1887,11 @@ interactions: cache-control: - no-cache content-length: - - '1528' + - '1529' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:39 GMT + - Wed, 26 Jul 2023 23:10:26 GMT expires: - '-1' pragma: @@ -1823,21 +2021,27 @@ interactions: US","East Asia","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":["Central US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East US","East Asia","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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"}' + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: - - '12338' + - '12831' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:40 GMT + - Wed, 26 Jul 2023 23:10:26 GMT expires: - '-1' pragma: @@ -1885,13 +2089,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:41.7285995Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:41.7285995Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 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/East - US/containerappsjobOperationStatuses/16701a2a-befe-4bab-86c4-094443d7e8d6?api-version=2023-04-01-preview&azureAsyncOperation=true + US/containerappsjobOperationStatuses/24c5164a-9a87-449f-a866-c098bd6f60de?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: @@ -1899,7 +2103,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:42 GMT + - Wed, 26 Jul 2023 23:10:27 GMT expires: - '-1' pragma: @@ -1941,7 +2145,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:41.7285995","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:41.7285995"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -1952,7 +2156,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:43 GMT + - Wed, 26 Jul 2023 23:10:28 GMT expires: - '-1' pragma: @@ -1994,7 +2198,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:41.7285995","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:41.7285995"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2005,7 +2209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:46 GMT + - Wed, 26 Jul 2023 23:10:31 GMT expires: - '-1' pragma: @@ -2047,60 +2251,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:41.7285995","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:41.7285995"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1331' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 29 Jun 2023 17:34:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp job create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --environment --replica-timeout --replica-retry-limit - --trigger-type --replica-completion-count --parallelism --image --cpu --memory - User-Agent: - - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - AZURECLI/2.49.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:41.7285995","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:41.7285995"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2111,7 +2262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:52 GMT + - Wed, 26 Jul 2023 23:10:34 GMT expires: - '-1' pragma: @@ -2240,21 +2391,27 @@ interactions: US","East Asia","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":["Central US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East US","East Asia","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North - Central US","East US 2","West Europe","Central US","East US","North Europe","South - Central US","UK South","West US 3"],"apiVersions":["2023-05-02-preview","2023-05-01","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"}' + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-05-02-preview","2023-05-01","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: - - '12338' + - '12831' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:53 GMT + - Wed, 26 Jul 2023 23:10:34 GMT expires: - '-1' pragma: @@ -2289,7 +2446,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-06-29T17:34:41.7285995","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-29T17:34:41.7285995"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2300,7 +2457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:54 GMT + - Wed, 26 Jul 2023 23:10:35 GMT expires: - '-1' pragma: @@ -2309,10 +2466,8 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2342,7 +2497,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-tq5so75","name":"job2000003-tq5so75"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-ac6ihaf","name":"job2000003-ac6ihaf"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2353,7 +2508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:56 GMT + - Wed, 26 Jul 2023 23:10:36 GMT expires: - '-1' pragma: @@ -2395,18 +2550,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions?api-version=2023-04-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-tq5so75","name":"job2000003-tq5so75","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-06-29T17:34:56+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":null}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-ac6ihaf","name":"job2000003-ac6ihaf","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:10:36+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '481' + - '479' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:57 GMT + - Wed, 26 Jul 2023 23:10:37 GMT expires: - '-1' pragma: @@ -2443,21 +2598,21 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-tq5so75?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-ac6ihaf?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-tq5so75","name":"job2000003-tq5so75","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-06-29T17:34:56+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":null}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-ac6ihaf","name":"job2000003-ac6ihaf","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:10:36+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '469' + - '467' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:58 GMT + - Wed, 26 Jul 2023 23:10:37 GMT expires: - '-1' pragma: @@ -2499,7 +2654,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-fgs0qro","name":"job2000003-fgs0qro"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-mqmasr4","name":"job2000003-mqmasr4"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2510,7 +2665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:34:59 GMT + - Wed, 26 Jul 2023 23:10:38 GMT expires: - '-1' pragma: @@ -2553,10 +2708,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/stop/job2000003-fgs0qro?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/stop/job2000003-mqmasr4?api-version=2023-04-01-preview response: body: - string: '"Job Execution: job2000003-fgs0qro, stopped successfully."' + string: '"Job Execution: job2000003-mqmasr4, stopped successfully."' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2567,7 +2722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:35:00 GMT + - Wed, 26 Jul 2023 23:10:39 GMT expires: - '-1' pragma: @@ -2606,21 +2761,21 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-fgs0qro?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-mqmasr4?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-fgs0qro","name":"job2000003-fgs0qro","type":"Microsoft.App/jobs/executions","properties":{"status":"Stopped","startTime":"2023-06-29T17:34:59+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":null}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-mqmasr4","name":"job2000003-mqmasr4","type":"Microsoft.App/jobs/executions","properties":{"status":"Stopped","startTime":"2023-07-26T23:10:39+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '469' + - '467' content-type: - application/json; charset=utf-8 date: - - Thu, 29 Jun 2023 17:35:00 GMT + - Wed, 26 Jul 2023 23:10:39 GMT expires: - '-1' pragma: diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_custom_executions.py b/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_custom_executions.py deleted file mode 100644 index 163fff148a4..00000000000 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_custom_executions.py +++ /dev/null @@ -1,112 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 time - -from azure.cli.testsdk.scenario_tests import AllowLargeResponse -from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, JMESPathCheck, live_only, StorageAccountPreparer) -from azext_containerapp.tests.latest.common import (write_test_file, clean_up_test_file) - -TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) - -from azext_containerapp.tests.latest.common import TEST_LOCATION -from .utils import create_containerapp_env - -class ContainerAppJobsCustomExecutionsTest(ScenarioTest): - @AllowLargeResponse(8192) - @ResourceGroupPreparer(location="northcentralus") - def test_containerapp_job_custom_executionstest_e2e(self, resource_group): - import requests - - TEST_LOCATION = "northcentralusstage" - self.cmd('configure --defaults location={}'.format(TEST_LOCATION)) - - env = self.create_random_name(prefix='env', length=24) - job = self.create_random_name(prefix='job3', length=24) - - create_containerapp_env(self, env, resource_group) - - # create a container app environment for a Container App Job resource - self.cmd('containerapp env show -n {} -g {}'.format(env, resource_group), checks=[ - JMESPathCheck('name', env) - ]) - - # create a Container App Job resource - self.cmd("az containerapp job create --resource-group {} --name {} --environment {} --replica-timeout 200 --replica-retry-limit 1 --trigger-type manual --replica-completion-count 1 --parallelism 1 --image mcr.microsoft.com/k8se/quickstart:latest --cpu '0.25' --memory '0.5Gi'".format(resource_group, job, env)) - - # wait for 60s for the job to be provisioned - jobProvisioning = True - timeout = time.time() + 60*1 # 1 minutes from now - while(jobProvisioning): - jobProvisioning = self.cmd("az containerapp job show --resource-group {} --name {}".format(resource_group, job)).get_output_in_json()['properties']['provisioningState'] != "Succeeded" - if(time.time() > timeout): - break - - # start an execution with custom container information - customContainerImage = "mcr.microsoft.com/k8se/quickstart:latest" - customContainerName = "job3-custom-exec" - execution = self.cmd("az containerapp job start --resource-group {} --name {} --image {} --container-name {} --cpu '0.5' --memory '1Gi'".format(resource_group, job, customContainerImage, customContainerName)).get_output_in_json() - if "id" in execution: - # check if the job execution id is in the response - self.assertEqual(job in execution['id'], True) - if "name" in execution: - # check if the job execution name is in the response - self.assertEqual(job in execution['name'], True) - - # get the execution and check if the custom container information is present - self.cmd("az containerapp job execution show --resource-group {} --name {} --job-execution-name {}".format(resource_group, job, execution['name']), checks=[ - JMESPathCheck('properties.template.containers[0].name', customContainerName), - JMESPathCheck('properties.template.containers[0].image', customContainerImage), - JMESPathCheck('properties.template.containers[0].resources.cpu', '0.5'), - JMESPathCheck('properties.template.containers[0].resources.memory', '1Gi') - ]) - - # yaml file to start a job execution - containerappjobexecution_yaml_text = f""" - containers: - - env: - - name: MY_ENV_VAR - value: hello - image: mcr.microsoft.com/k8se/quickstart-jobs:latest - name: test-yaml-execution - resources: - cpu: 0.5 - memory: 1Gi - initContainers: - - command: - - /bin/sh - - -c - - sleep 10 - image: k8seteste2e.azurecr.io/e2e-apps/kuar:green - name: simple-sleep-container - resources: - cpu: "0.25" - memory: 0.5Gi - """ - containerappjob_file_name = f"{self._testMethodName}_containerappjob.yml" - write_test_file(containerappjob_file_name, containerappjobexecution_yaml_text) - - # start job execution with yaml file - execution = self.cmd("az containerapp job start --resource-group {} --name {} --yaml {}".format(resource_group, job, containerappjob_file_name)).get_output_in_json() - - if "id" in execution: - # check if the job execution id is in the response - self.assertEqual(job in execution['id'], True) - if "name" in execution: - # check if the job execution name is in the response - self.assertEqual(job in execution['name'], True) - - # get the execution and check if the custom container information is present - self.cmd("az containerapp job execution show --resource-group {} --name {} --job-execution-name {}".format(resource_group, job, execution['name']), checks=[ - JMESPathCheck('properties.template.containers[0].name', "test-yaml-execution"), - JMESPathCheck('properties.template.containers[0].image', "mcr.microsoft.com/k8se/quickstart-jobs:latest"), - JMESPathCheck('properties.template.containers[0].resources.cpu', '0.5'), - JMESPathCheck('properties.template.containers[0].resources.memory', '1Gi'), - JMESPathCheck('properties.template.initContainers[0].name', "simple-sleep-container"), - JMESPathCheck('properties.template.initContainers[0].image', "k8seteste2e.azurecr.io/e2e-apps/kuar:green"), - JMESPathCheck('properties.template.initContainers[0].resources.cpu', '0.25'), - JMESPathCheck('properties.template.initContainers[0].resources.memory', '0.5Gi') - ]) \ No newline at end of file diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py b/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py index b42e696bce9..9acc2ef5370 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py @@ -8,6 +8,7 @@ from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, JMESPathCheck, live_only, StorageAccountPreparer) +from azext_containerapp.tests.latest.common import (write_test_file, clean_up_test_file) TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) @@ -75,4 +76,86 @@ def test_containerapp_job_executionstest_e2e(self, resource_group): # get stopped execution for the job and check status singleExecution = self.cmd("az containerapp job execution show --resource-group {} --name {} --job-execution-name {}".format(resource_group, job, execution['name'])).get_output_in_json() self.assertEqual(job in singleExecution['name'], True) - self.assertEqual(singleExecution['properties']['status'], "Stopped") \ No newline at end of file + self.assertEqual(singleExecution['properties']['status'], "Stopped") + + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="northcentralus") + def test_containerapp_job_custom_executionstest_e2e(self, resource_group): + import requests + + TEST_LOCATION = "northcentralusstage" + self.cmd('configure --defaults location={}'.format(TEST_LOCATION)) + + env = self.create_random_name(prefix='env', length=24) + job = self.create_random_name(prefix='job3', length=24) + + create_containerapp_env(self, env, resource_group) + + # create a container app environment for a Container App Job resource + self.cmd('containerapp env show -n {} -g {}'.format(env, resource_group), checks=[ + JMESPathCheck('name', env) + ]) + + # create a Container App Job resource + self.cmd("az containerapp job create --resource-group {} --name {} --environment {} --replica-timeout 200 --replica-retry-limit 1 --trigger-type manual --replica-completion-count 1 --parallelism 1 --image mcr.microsoft.com/k8se/quickstart:latest --cpu '0.25' --memory '0.5Gi'".format(resource_group, job, env)) + + # wait for 60s for the job to be provisioned + jobProvisioning = True + timeout = time.time() + 60*1 # 1 minutes from now + while(jobProvisioning): + jobProvisioning = self.cmd("az containerapp job show --resource-group {} --name {}".format(resource_group, job)).get_output_in_json()['properties']['provisioningState'] != "Succeeded" + if(time.time() > timeout): + break + + # start an execution with custom container information + customContainerImage = "mcr.microsoft.com/k8se/quickstart:latest" + customContainerName = "job3-custom-exec" + execution = self.cmd("az containerapp job start --resource-group {} --name {} --image {} --container-name {} --cpu '0.5' --memory '1Gi'".format(resource_group, job, customContainerImage, customContainerName)).get_output_in_json() + if "id" in execution: + # check if the job execution id is in the response + self.assertEqual(job in execution['id'], True) + if "name" in execution: + # check if the job execution name is in the response + self.assertEqual(job in execution['name'], True) + + # get the execution and check if the custom container information is present + self.cmd("az containerapp job execution show --resource-group {} --name {} --job-execution-name {}".format(resource_group, job, execution['name']), checks=[ + JMESPathCheck('properties.template.containers[0].name', customContainerName), + JMESPathCheck('properties.template.containers[0].image', customContainerImage), + JMESPathCheck('properties.template.containers[0].resources.cpu', '0.5'), + JMESPathCheck('properties.template.containers[0].resources.memory', '1Gi') + ]) + + # yaml file to start a job execution + containerappjobexecution_yaml_text = f""" + containers: + - env: + - name: MY_ENV_VAR + value: hello + image: mcr.microsoft.com/k8se/quickstart-jobs:latest + name: test-yaml-execution + resources: + cpu: 0.5 + memory: 1Gi + """ + containerappjob_file_name = f"{self._testMethodName}_containerappjob.yml" + write_test_file(containerappjob_file_name, containerappjobexecution_yaml_text) + + # start job execution with yaml file + execution = self.cmd("az containerapp job start --resource-group {} --name {} --yaml {}".format(resource_group, job, containerappjob_file_name)).get_output_in_json() + + if "id" in execution: + # check if the job execution id is in the response + self.assertEqual(job in execution['id'], True) + if "name" in execution: + # check if the job execution name is in the response + self.assertEqual(job in execution['name'], True) + + # get the execution and check if the custom container information is present + self.cmd("az containerapp job execution show --resource-group {} --name {} --job-execution-name {}".format(resource_group, job, execution['name']), checks=[ + JMESPathCheck('properties.template.containers[0].name', "test-yaml-execution"), + JMESPathCheck('properties.template.containers[0].image', "mcr.microsoft.com/k8se/quickstart-jobs:latest"), + JMESPathCheck('properties.template.containers[0].resources.cpu', '0.5'), + JMESPathCheck('properties.template.containers[0].resources.memory', '1Gi') + ]) + clean_up_test_file(containerappjob_file_name) \ No newline at end of file From 0eb4c01b15c44f1c0bc58f5c9fe67c4c538511ae Mon Sep 17 00:00:00 2001 From: anfranci Date: Wed, 26 Jul 2023 18:18:01 -0500 Subject: [PATCH 08/11] fix job exec input --- ...inerapp_job_custom_executionstest_e2e.yaml | 559 +++++++++++++++--- ...t_containerapp_job_executionstest_e2e.yaml | 222 +++---- .../latest/test_containerappjob_executions.py | 9 +- 3 files changed, 576 insertions(+), 214 deletions(-) diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml index 39265aa06bf..936b179f2d4 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml @@ -23,7 +23,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-19T00:36:52.1280065Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-19T02:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-19T00:36:52.1280065Z","modifiedDate":"2023-07-19T00:36:52.1280065Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:16:59.1320004Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T08:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T23:16:59.1320004Z","modifiedDate":"2023-07-26T23:16:59.1320004Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -36,7 +36,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:51 GMT + - Wed, 26 Jul 2023 23:16:59 GMT expires: - '-1' location: @@ -75,7 +75,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-19T00:36:52.1280065Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-19T02:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-19T00:36:52.1280065Z","modifiedDate":"2023-07-19T00:36:52.1280065Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:16:59.1320004Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T08:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T23:16:59.1320004Z","modifiedDate":"2023-07-26T23:16:59.1320004Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -88,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:51 GMT + - Wed, 26 Jul 2023 23:16:59 GMT expires: - '-1' pragma: @@ -129,7 +129,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01 response: body: - string: '{"primarySharedKey":"fIQNnUtxtlDIruYNVAsXUV03aP68Ce6gFD9hQewN9K8MlxWmmDia6Ccf07L2aHJ11gI/1Ss2fbsW9UtxbDD0LQ==","secondarySharedKey":"zPaxAN6k6d3ZBYP7ed1wWbWXXxI3kLEzw61c5Zhp8NrUzpaehvyxBfbk6INNbV18lWdJjb01WRrqayQof1iOtw=="}' + string: '{"primarySharedKey":"YZMLjciiUuIk1BHSdLUH2IFOSrRBvd7ls5s6X1qMMdK/4/JLIdnX267HF3h3F+T6GpJlMmbjwywGlNj5sqvDXw==","secondarySharedKey":"pigjpbekvrHNcqx92C60MXxQaaQ0uegJMNT0vkwtOnMQHZCec2s9Rdtdq/4Bd6Gf6x6UvyMlBxgTFJ2OZHjKuQ=="}' headers: access-control-allow-origin: - '*' @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:53 GMT + - Wed, 26 Jul 2023 23:16:59 GMT expires: - '-1' pragma: @@ -158,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -293,7 +293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:53 GMT + - Wed, 26 Jul 2023 23:17:00 GMT expires: - '-1' pragma: @@ -436,7 +436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:53 GMT + - Wed, 26 Jul 2023 23:16:59 GMT expires: - '-1' pragma: @@ -579,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:54 GMT + - Wed, 26 Jul 2023 23:16:59 GMT expires: - '-1' pragma: @@ -722,7 +722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:54 GMT + - Wed, 26 Jul 2023 23:17:00 GMT expires: - '-1' pragma: @@ -739,8 +739,8 @@ interactions: - request: body: '{"location": "northcentralusstage", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "91ca653a-7a75-464c-b09f-4245d8b7f799", - "sharedKey": "fIQNnUtxtlDIruYNVAsXUV03aP68Ce6gFD9hQewN9K8MlxWmmDia6Ccf07L2aHJ11gI/1Ss2fbsW9UtxbDD0LQ=="}}, + "logAnalyticsConfiguration": {"customerId": "bdb0233c-6f58-4a92-98da-2fbd96268cf6", + "sharedKey": "YZMLjciiUuIk1BHSdLUH2IFOSrRBvd7ls5s6X1qMMdK/4/JLIdnX267HF3h3F+T6GpJlMmbjwywGlNj5sqvDXw=="}}, "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": false}}' headers: @@ -766,21 +766,21 @@ 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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1570' + - '1567' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:56 GMT + - Wed, 26 Jul 2023 23:17:02 GMT expires: - '-1' pragma: @@ -817,10 +817,166 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '297' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:17:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '297' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:17:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '297' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:17:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320","name":"77797813-96a8-499c-91d2-01eea521c320","status":"InProgress","startTime":"2023-07-19T00:36:56.4974213"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -832,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:57 GMT + - Wed, 26 Jul 2023 23:17:10 GMT expires: - '-1' pragma: @@ -869,10 +1025,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320","name":"77797813-96a8-499c-91d2-01eea521c320","status":"InProgress","startTime":"2023-07-19T00:36:56.4974213"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -884,7 +1040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:36:59 GMT + - Wed, 26 Jul 2023 23:17:13 GMT expires: - '-1' pragma: @@ -921,10 +1077,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/77797813-96a8-499c-91d2-01eea521c320","name":"77797813-96a8-499c-91d2-01eea521c320","status":"Succeeded","startTime":"2023-07-19T00:36:56.4974213"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"Succeeded","startTime":"2023-07-26T23:17:03.0178956"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -936,7 +1092,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:37:17 GMT + - Wed, 26 Jul 2023 23:17:15 GMT expires: - '-1' pragma: @@ -977,7 +1133,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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -985,11 +1141,11 @@ interactions: cache-control: - no-cache content-length: - - '1570' + - '1567' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:37:20 GMT + - Wed, 26 Jul 2023 23:17:16 GMT expires: - '-1' pragma: @@ -1138,7 +1294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:37:28 GMT + - Wed, 26 Jul 2023 23:17:16 GMT expires: - '-1' pragma: @@ -1173,7 +1329,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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1181,11 +1337,11 @@ interactions: cache-control: - no-cache content-length: - - '1570' + - '1567' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:37:30 GMT + - Wed, 26 Jul 2023 23:17:17 GMT expires: - '-1' pragma: @@ -1334,7 +1490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:37:30 GMT + - Wed, 26 Jul 2023 23:17:17 GMT expires: - '-1' pragma: @@ -1369,7 +1525,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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1377,11 +1533,11 @@ interactions: cache-control: - no-cache content-length: - - '1570' + - '1567' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:37:30 GMT + - Wed, 26 Jul 2023 23:17:18 GMT expires: - '-1' pragma: @@ -1531,7 +1687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:37:34 GMT + - Wed, 26 Jul 2023 23:17:18 GMT expires: - '-1' pragma: @@ -1567,7 +1723,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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:36:55.0022267","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:36:55.0022267"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"orangehill-de06a0c7.northcentralusstage.azurecontainerapps.io","staticIp":"52.154.206.74","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"91ca653a-7a75-464c-b09f-4245d8b7f799","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1575,11 +1731,11 @@ interactions: cache-control: - no-cache content-length: - - '1570' + - '1567' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:07 GMT + - Wed, 26 Jul 2023 23:17:19 GMT expires: - '-1' pragma: @@ -1729,7 +1885,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:07 GMT + - Wed, 26 Jul 2023 23:17:19 GMT expires: - '-1' pragma: @@ -1777,13 +1933,12 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 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/North - Central US (Stage)/containerappsjobOperationStatuses/bda02902-1e77-4f38-b3c3-43617a630ea5?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappsjobOperationStatuses/0d1e693a-b066-4456-8a1b-203163073c91?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: @@ -1791,7 +1946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:12 GMT + - Wed, 26 Jul 2023 23:17:20 GMT expires: - '-1' pragma: @@ -1833,7 +1988,272 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1361' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:17: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 job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1361' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:17: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 job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1361' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:17:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1361' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:17: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 job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1361' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 26 Jul 2023 23:17: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 job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --replica-completion-count --parallelism --image --cpu --memory + User-Agent: + - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -1844,7 +2264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:13 GMT + - Wed, 26 Jul 2023 23:17:34 GMT expires: - '-1' pragma: @@ -1886,7 +2306,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -1897,7 +2317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:19 GMT + - Wed, 26 Jul 2023 23:17:37 GMT expires: - '-1' pragma: @@ -2046,7 +2466,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:19 GMT + - Wed, 26 Jul 2023 23:17:36 GMT expires: - '-1' pragma: @@ -2081,7 +2501,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2092,7 +2512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:28 GMT + - Wed, 26 Jul 2023 23:17:37 GMT expires: - '-1' pragma: @@ -2138,7 +2558,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-3ak2290","name":"job3000003-3ak2290"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-7umaunn","name":"job3000003-7umaunn"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2149,7 +2569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:29 GMT + - Wed, 26 Jul 2023 23:17:39 GMT expires: - '-1' pragma: @@ -2188,10 +2608,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-3ak2290?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-7umaunn?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-3ak2290","name":"job3000003-3ak2290","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-19T00:38:29+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3-custom-exec","resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-7umaunn","name":"job3000003-7umaunn","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:17:39+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3-custom-exec","resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[]}}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2202,7 +2622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:30 GMT + - Wed, 26 Jul 2023 23:17:39 GMT expires: - '-1' pragma: @@ -2243,7 +2663,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-19T00:38:11.7520766","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-19T00:38:11.7520766"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2254,7 +2674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:31 GMT + - Wed, 26 Jul 2023 23:17:40 GMT expires: - '-1' pragma: @@ -2277,9 +2697,7 @@ interactions: - request: body: '{"containers": [{"image": "mcr.microsoft.com/k8se/quickstart-jobs:latest", "name": "test-yaml-execution", "env": [{"name": "MY_ENV_VAR", "value": "hello"}], - "resources": {"cpu": 0.5, "memory": "1Gi"}}], "initContainers": [{"image": "k8seteste2e.azurecr.io/e2e-apps/kuar:green", - "name": "simple-sleep-container", "command": ["/bin/sh", "-c", "sleep 10"], - "resources": {"cpu": 0.25, "memory": "0.5Gi"}}]}' + "resources": {"cpu": 0.5, "memory": "1Gi"}}]}' headers: Accept: - '*/*' @@ -2290,7 +2708,7 @@ interactions: Connection: - keep-alive Content-Length: - - '402' + - '202' Content-Type: - application/json ParameterSetName: @@ -2302,7 +2720,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-zw8pwvi","name":"job3000003-zw8pwvi"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-78otgvr","name":"job3000003-78otgvr"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2313,7 +2731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:31 GMT + - Wed, 26 Jul 2023 23:17:41 GMT expires: - '-1' pragma: @@ -2352,22 +2770,21 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-zw8pwvi?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-78otgvr?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-zw8pwvi","name":"job3000003-zw8pwvi","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-19T00:38:31+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"test-yaml-execution","env":[{"name":"MY_ENV_VAR","value":"hello"}],"resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[{"image":"k8seteste2e.azurecr.io/e2e-apps/kuar:green","name":"simple-sleep-container","command":["/bin/sh","-c","sleep - 10"],"resources":{"cpu":0.250,"memory":"0.5Gi","ephemeralStorage":""}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-78otgvr","name":"job3000003-78otgvr","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:17:41+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"test-yaml-execution","env":[{"name":"MY_ENV_VAR","value":"hello"}],"resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[]}}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '714' + - '525' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jul 2023 00:38:32 GMT + - Wed, 26 Jul 2023 23:17:42 GMT expires: - '-1' pragma: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml index 855931fc6de..068ef3e937e 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml @@ -23,7 +23,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:09:57.1696915Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T06:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T23:09:57.1696915Z","modifiedDate":"2023-07-26T23:09:57.1696915Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:16:59.0469599Z"},"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-26T23:16:59.0469599Z","modifiedDate":"2023-07-26T23:16:59.0469599Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -36,7 +36,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:09:57 GMT + - Wed, 26 Jul 2023 23:16:58 GMT expires: - '-1' location: @@ -75,7 +75,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:09:57.1696915Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T06:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T23:09:57.1696915Z","modifiedDate":"2023-07-26T23:09:57.1696915Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:16:59.0469599Z"},"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-26T23:16:59.0469599Z","modifiedDate":"2023-07-26T23:16:59.0469599Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -88,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:09:57 GMT + - Wed, 26 Jul 2023 23:16:58 GMT expires: - '-1' pragma: @@ -129,7 +129,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01 response: body: - string: '{"primarySharedKey":"iy2r46jrkotqhSziOQUo/xvVh7YKLgyuifXF29XAdjRG4Iks5f1T3Sywkz1xPJO8qZ4H6eh6bl9LHlaMhXEQpw==","secondarySharedKey":"+xH18/oMtZF9P/Rdo+1e8vVve4uDnPO1BYN1XarTBCowY5D7HtNTqlD9DxatiuNql3wdczIV4S4ISsxif33lSQ=="}' + string: '{"primarySharedKey":"5HAue1E8eiPOnD7ZMKeybEldTMXm1puEJUvEb/Q3NF12N03oODXhDoMifO0+0/vwFT0pe1360WZ+YH+AetRDCQ==","secondarySharedKey":"wzzQQZf8KmS5mis7MYGC4+a4xjgL9OPUHDZaDAJ7reLwUdGChXSVxWd82RoZsPk3rMuR5rTx4CLym6MvGf/P8g=="}' headers: access-control-allow-origin: - '*' @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:09:57 GMT + - Wed, 26 Jul 2023 23:16:59 GMT expires: - '-1' pragma: @@ -293,7 +293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:09:58 GMT + - Wed, 26 Jul 2023 23:16:59 GMT expires: - '-1' pragma: @@ -436,7 +436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:09:58 GMT + - Wed, 26 Jul 2023 23:16:59 GMT expires: - '-1' pragma: @@ -579,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:09:58 GMT + - Wed, 26 Jul 2023 23:16:59 GMT expires: - '-1' pragma: @@ -722,7 +722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:09:58 GMT + - Wed, 26 Jul 2023 23:17:00 GMT expires: - '-1' pragma: @@ -739,8 +739,8 @@ interactions: - request: body: '{"location": "eastus", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "f756c5da-0fd8-4139-8944-981db6f31c78", - "sharedKey": "iy2r46jrkotqhSziOQUo/xvVh7YKLgyuifXF29XAdjRG4Iks5f1T3Sywkz1xPJO8qZ4H6eh6bl9LHlaMhXEQpw=="}}, + "logAnalyticsConfiguration": {"customerId": "09646a4d-3f52-43da-b126-09d701ebc560", + "sharedKey": "5HAue1E8eiPOnD7ZMKeybEldTMXm1puEJUvEb/Q3NF12N03oODXhDoMifO0+0/vwFT0pe1360WZ+YH+AetRDCQ=="}}, "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": false}}' headers: @@ -766,21 +766,21 @@ 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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1529' + - '1525' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:01 GMT + - Wed, 26 Jul 2023 23:17:04 GMT expires: - '-1' pragma: @@ -817,10 +817,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -832,7 +832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:02 GMT + - Wed, 26 Jul 2023 23:17:04 GMT expires: - '-1' pragma: @@ -869,10 +869,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -884,7 +884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:04 GMT + - Wed, 26 Jul 2023 23:17:07 GMT expires: - '-1' pragma: @@ -921,10 +921,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -936,7 +936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:07 GMT + - Wed, 26 Jul 2023 23:17:09 GMT expires: - '-1' pragma: @@ -973,10 +973,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -988,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:10 GMT + - Wed, 26 Jul 2023 23:17:11 GMT expires: - '-1' pragma: @@ -1025,10 +1025,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1040,7 +1040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:12 GMT + - Wed, 26 Jul 2023 23:17:14 GMT expires: - '-1' pragma: @@ -1077,10 +1077,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1092,7 +1092,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:15 GMT + - Wed, 26 Jul 2023 23:17:17 GMT expires: - '-1' pragma: @@ -1129,10 +1129,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1144,7 +1144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:17 GMT + - Wed, 26 Jul 2023 23:17:19 GMT expires: - '-1' pragma: @@ -1181,62 +1181,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"InProgress","startTime":"2023-07-26T23:10:01.7309613"}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 23:10:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-workspace-id --logs-workspace-key - User-Agent: - - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - AZURECLI/2.49.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d?api-version=2023-04-01-preview&azureAsyncOperation=true - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c29e8e18-3cf2-482e-8c13-63c8337b511d","name":"c29e8e18-3cf2-482e-8c13-63c8337b511d","status":"Succeeded","startTime":"2023-07-26T23:10:01.7309613"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"Succeeded","startTime":"2023-07-26T23:17:04.4480695"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1248,7 +1196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:22 GMT + - Wed, 26 Jul 2023 23:17:22 GMT expires: - '-1' pragma: @@ -1289,7 +1237,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1297,11 +1245,11 @@ interactions: cache-control: - no-cache content-length: - - '1529' + - '1525' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:23 GMT + - Wed, 26 Jul 2023 23:17:23 GMT expires: - '-1' pragma: @@ -1450,7 +1398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:23 GMT + - Wed, 26 Jul 2023 23:17:23 GMT expires: - '-1' pragma: @@ -1485,7 +1433,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1493,11 +1441,11 @@ interactions: cache-control: - no-cache content-length: - - '1529' + - '1525' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:24 GMT + - Wed, 26 Jul 2023 23:17:24 GMT expires: - '-1' pragma: @@ -1646,7 +1594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:24 GMT + - Wed, 26 Jul 2023 23:17:24 GMT expires: - '-1' pragma: @@ -1681,7 +1629,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1689,11 +1637,11 @@ interactions: cache-control: - no-cache content-length: - - '1529' + - '1525' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:24 GMT + - Wed, 26 Jul 2023 23:17:24 GMT expires: - '-1' pragma: @@ -1843,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:25 GMT + - Wed, 26 Jul 2023 23:17:25 GMT expires: - '-1' pragma: @@ -1879,7 +1827,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:09:59.7970485","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:09:59.7970485"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"thankfulbay-0bd3001b.eastus.azurecontainerapps.io","staticIp":"52.234.246.238","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f756c5da-0fd8-4139-8944-981db6f31c78","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1887,11 +1835,11 @@ interactions: cache-control: - no-cache content-length: - - '1529' + - '1525' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:26 GMT + - Wed, 26 Jul 2023 23:17:26 GMT expires: - '-1' pragma: @@ -2041,7 +1989,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:26 GMT + - Wed, 26 Jul 2023 23:17:25 GMT expires: - '-1' pragma: @@ -2089,13 +2037,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 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/East - US/containerappsjobOperationStatuses/24c5164a-9a87-449f-a866-c098bd6f60de?api-version=2023-04-01-preview&azureAsyncOperation=true + US/containerappsjobOperationStatuses/a5497f7a-90b5-46bf-8b15-34a66a0a0066?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: @@ -2103,7 +2051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:27 GMT + - Wed, 26 Jul 2023 23:17:27 GMT expires: - '-1' pragma: @@ -2145,7 +2093,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2156,7 +2104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:28 GMT + - Wed, 26 Jul 2023 23:17:28 GMT expires: - '-1' pragma: @@ -2198,7 +2146,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2209,7 +2157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:31 GMT + - Wed, 26 Jul 2023 23:17:30 GMT expires: - '-1' pragma: @@ -2251,7 +2199,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2262,7 +2210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:34 GMT + - Wed, 26 Jul 2023 23:17:33 GMT expires: - '-1' pragma: @@ -2411,7 +2359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:34 GMT + - Wed, 26 Jul 2023 23:17:33 GMT expires: - '-1' pragma: @@ -2446,7 +2394,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:10:27.2750942","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:10:27.2750942"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2457,7 +2405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:35 GMT + - Wed, 26 Jul 2023 23:17:34 GMT expires: - '-1' pragma: @@ -2466,8 +2414,10 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2497,7 +2447,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-ac6ihaf","name":"job2000003-ac6ihaf"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-prrf1br","name":"job2000003-prrf1br"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2508,7 +2458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:36 GMT + - Wed, 26 Jul 2023 23:17:36 GMT expires: - '-1' pragma: @@ -2550,7 +2500,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions?api-version=2023-04-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-ac6ihaf","name":"job2000003-ac6ihaf","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:10:36+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-prrf1br","name":"job2000003-prrf1br","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:17:36+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2561,7 +2511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:37 GMT + - Wed, 26 Jul 2023 23:17:37 GMT expires: - '-1' pragma: @@ -2598,10 +2548,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-ac6ihaf?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-prrf1br?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-ac6ihaf","name":"job2000003-ac6ihaf","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:10:36+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-prrf1br","name":"job2000003-prrf1br","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:17:36+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2612,7 +2562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:37 GMT + - Wed, 26 Jul 2023 23:17:38 GMT expires: - '-1' pragma: @@ -2654,7 +2604,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-mqmasr4","name":"job2000003-mqmasr4"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-6y34afl","name":"job2000003-6y34afl"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2665,7 +2615,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:38 GMT + - Wed, 26 Jul 2023 23:17:39 GMT expires: - '-1' pragma: @@ -2708,10 +2658,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/stop/job2000003-mqmasr4?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/stop/job2000003-6y34afl?api-version=2023-04-01-preview response: body: - string: '"Job Execution: job2000003-mqmasr4, stopped successfully."' + string: '"Job Execution: job2000003-6y34afl, stopped successfully."' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2722,7 +2672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:39 GMT + - Wed, 26 Jul 2023 23:17:39 GMT expires: - '-1' pragma: @@ -2761,10 +2711,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-mqmasr4?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-6y34afl?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-mqmasr4","name":"job2000003-mqmasr4","type":"Microsoft.App/jobs/executions","properties":{"status":"Stopped","startTime":"2023-07-26T23:10:39+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-6y34afl","name":"job2000003-6y34afl","type":"Microsoft.App/jobs/executions","properties":{"status":"Stopped","startTime":"2023-07-26T23:17:39+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2775,7 +2725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:10:39 GMT + - Wed, 26 Jul 2023 23:17:39 GMT expires: - '-1' pragma: diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py b/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py index 9acc2ef5370..210ada92c17 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py @@ -143,13 +143,8 @@ def test_containerapp_job_custom_executionstest_e2e(self, resource_group): # start job execution with yaml file execution = self.cmd("az containerapp job start --resource-group {} --name {} --yaml {}".format(resource_group, job, containerappjob_file_name)).get_output_in_json() - - if "id" in execution: - # check if the job execution id is in the response - self.assertEqual(job in execution['id'], True) - if "name" in execution: - # check if the job execution name is in the response - self.assertEqual(job in execution['name'], True) + self.assertEqual(job in execution['id'], True) + self.assertEqual(job in execution['name'], True) # get the execution and check if the custom container information is present self.cmd("az containerapp job execution show --resource-group {} --name {} --job-execution-name {}".format(resource_group, job, execution['name']), checks=[ From e551dcfd45092511fb4674db6c31246e3e22d5be Mon Sep 17 00:00:00 2001 From: anfranci Date: Wed, 26 Jul 2023 23:28:26 -0500 Subject: [PATCH 09/11] fix job exec input --- src/containerapp/HISTORY.rst | 2 +- ...tom_executionstest_e2e_containerappjob.yml | 21 ------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 src/containerapp/azext_containerapp/tests/latest/test_containerapp_job_custom_executionstest_e2e_containerappjob.yml diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst index 730377b951d..e652c8e7a13 100644 --- a/src/containerapp/HISTORY.rst +++ b/src/containerapp/HISTORY.rst @@ -5,7 +5,7 @@ Release History Upcoming ++++++ -* 'az containerapp job start': update start execution payload format to exlude template property from API version 2023-05-01-preview onwards +* 'az containerapp job start': update start execution payload format to exlude template property from API version 2023-05-01 onwards 0.3.36 ++++++ diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_job_custom_executionstest_e2e_containerappjob.yml b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_job_custom_executionstest_e2e_containerappjob.yml deleted file mode 100644 index d30783a63a2..00000000000 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_job_custom_executionstest_e2e_containerappjob.yml +++ /dev/null @@ -1,21 +0,0 @@ - - containers: - - env: - - name: MY_ENV_VAR - value: hello - image: mcr.microsoft.com/k8se/quickstart-jobs:latest - name: test-yaml-execution - resources: - cpu: 0.5 - memory: 1Gi - initContainers: - - command: - - /bin/sh - - -c - - sleep 10 - image: k8seteste2e.azurecr.io/e2e-apps/kuar:green - name: simple-sleep-container - resources: - cpu: "0.25" - memory: 0.5Gi - \ No newline at end of file From 58560546bb7969c44fb4b46b7ecb7ebff407ad21 Mon Sep 17 00:00:00 2001 From: anfranci Date: Thu, 27 Jul 2023 02:26:22 -0500 Subject: [PATCH 10/11] fix job exec input --- src/containerapp/azext_containerapp/custom.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 44be1535ba7..aa1c2fbe123 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -2194,7 +2194,7 @@ def start_containerappsjob(cmd, def start_containerappjob_execution_yaml(cmd, name, resource_group_name, file_name, no_wait=False): yaml_containerappjob_execution = load_yaml_file(file_name) if type(yaml_containerappjob_execution) != dict: # pylint: disable=unidiomatic-typecheck - raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapp job execution YAML.') + raise InvalidArgumentValueError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapp job execution YAML.') containerappjob_def = None @@ -2205,7 +2205,7 @@ def start_containerappjob_execution_yaml(cmd, name, resource_group_name, file_na pass if not containerappjob_def: - raise ValidationError("The containerapp job '{}' does not exist".format(name)) + raise ResourceNotFoundError("The containerapp job '{}' does not exist".format(name)) containerappjobexec_def = None @@ -2214,7 +2214,7 @@ def start_containerappjob_execution_yaml(cmd, name, resource_group_name, file_na deserializer = create_deserializer() containerappjobexec_def = deserializer('JobExecutionTemplate', yaml_containerappjob_execution) except DeserializationError as ex: - raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapp job execution YAML.') from ex + raise InvalidArgumentValueError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapp job execution YAML.') from ex containerappjobexec_def = _convert_object_from_snake_to_camel_case(_object_to_dict(containerappjobexec_def)) From 25edeb3210fe801008192288aa124e0934fdd2bb Mon Sep 17 00:00:00 2001 From: anfranci Date: Thu, 27 Jul 2023 10:47:32 -0500 Subject: [PATCH 11/11] fix job exec input --- ...inerapp_job_custom_executionstest_e2e.yaml | 413 +++++------------- ...t_containerapp_job_executionstest_e2e.yaml | 166 +++---- .../latest/test_containerappjob_executions.py | 16 +- 3 files changed, 200 insertions(+), 395 deletions(-) diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml index 936b179f2d4..5a00cca073c 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_custom_executionstest_e2e.yaml @@ -23,7 +23,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:16:59.1320004Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T08:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T23:16:59.1320004Z","modifiedDate":"2023-07-26T23:16:59.1320004Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"55aa33c7-eb79-4b7f-9992-af9d7f904966","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-27T15:37:09.0885275Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-27T15:37:09.0885275Z","modifiedDate":"2023-07-27T15:37:09.0885275Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -36,7 +36,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:59 GMT + - Thu, 27 Jul 2023 15:37:08 GMT expires: - '-1' location: @@ -75,7 +75,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:16:59.1320004Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T08:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-26T23:16:59.1320004Z","modifiedDate":"2023-07-26T23:16:59.1320004Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"55aa33c7-eb79-4b7f-9992-af9d7f904966","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-27T15:37:09.0885275Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-27T15:37:09.0885275Z","modifiedDate":"2023-07-27T15:37:09.0885275Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -88,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:59 GMT + - Thu, 27 Jul 2023 15:37:08 GMT expires: - '-1' pragma: @@ -129,7 +129,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01 response: body: - string: '{"primarySharedKey":"YZMLjciiUuIk1BHSdLUH2IFOSrRBvd7ls5s6X1qMMdK/4/JLIdnX267HF3h3F+T6GpJlMmbjwywGlNj5sqvDXw==","secondarySharedKey":"pigjpbekvrHNcqx92C60MXxQaaQ0uegJMNT0vkwtOnMQHZCec2s9Rdtdq/4Bd6Gf6x6UvyMlBxgTFJ2OZHjKuQ=="}' + string: '{"primarySharedKey":"BeF1LxcPMWzqxnIZlViZuRMUbcJWH+pSjdsDLXaz8g9yM5wewVaWlHttf9FKvjevcr7lfgAHsgz/cZivJeYX0A==","secondarySharedKey":"GJv0FLmOv4yD9lZIsuJw77IRgB6a0eRY/10hNDwwUAei26mR60yJojyOsLafo5TuxniXsTGeIsXZrE3Czequ6g=="}' headers: access-control-allow-origin: - '*' @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:59 GMT + - Thu, 27 Jul 2023 15:37:09 GMT expires: - '-1' pragma: @@ -158,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -293,7 +293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:00 GMT + - Thu, 27 Jul 2023 15:37:09 GMT expires: - '-1' pragma: @@ -436,7 +436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:59 GMT + - Thu, 27 Jul 2023 15:37:09 GMT expires: - '-1' pragma: @@ -579,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:59 GMT + - Thu, 27 Jul 2023 15:37:10 GMT expires: - '-1' pragma: @@ -722,7 +722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:00 GMT + - Thu, 27 Jul 2023 15:37:10 GMT expires: - '-1' pragma: @@ -739,8 +739,8 @@ interactions: - request: body: '{"location": "northcentralusstage", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "bdb0233c-6f58-4a92-98da-2fbd96268cf6", - "sharedKey": "YZMLjciiUuIk1BHSdLUH2IFOSrRBvd7ls5s6X1qMMdK/4/JLIdnX267HF3h3F+T6GpJlMmbjwywGlNj5sqvDXw=="}}, + "logAnalyticsConfiguration": {"customerId": "55aa33c7-eb79-4b7f-9992-af9d7f904966", + "sharedKey": "BeF1LxcPMWzqxnIZlViZuRMUbcJWH+pSjdsDLXaz8g9yM5wewVaWlHttf9FKvjevcr7lfgAHsgz/cZivJeYX0A=="}}, "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": false}}' headers: @@ -766,21 +766,21 @@ 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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:11.5666998Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:11.5666998Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whitemeadow-822655d4.northcentralusstage.azurecontainerapps.io","staticIp":"20.83.1.138","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"55aa33c7-eb79-4b7f-9992-af9d7f904966","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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 + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1567' + - '1569' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:02 GMT + - Thu, 27 Jul 2023 15:37:13 GMT expires: - '-1' pragma: @@ -817,14 +817,14 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064","name":"774b1d62-5fa3-45f3-a490-2a7ec2c10064","status":"InProgress","startTime":"2023-07-27T15:37:13.3436982"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -832,7 +832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:03 GMT + - Thu, 27 Jul 2023 15:37:13 GMT expires: - '-1' pragma: @@ -869,14 +869,14 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064","name":"774b1d62-5fa3-45f3-a490-2a7ec2c10064","status":"InProgress","startTime":"2023-07-27T15:37:13.3436982"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -884,7 +884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:06 GMT + - Thu, 27 Jul 2023 15:37:16 GMT expires: - '-1' pragma: @@ -921,14 +921,14 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064","name":"774b1d62-5fa3-45f3-a490-2a7ec2c10064","status":"InProgress","startTime":"2023-07-27T15:37:13.3436982"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -936,7 +936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:08 GMT + - Thu, 27 Jul 2023 15:37:18 GMT expires: - '-1' pragma: @@ -973,14 +973,14 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064","name":"774b1d62-5fa3-45f3-a490-2a7ec2c10064","status":"InProgress","startTime":"2023-07-27T15:37:13.3436982"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -988,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:10 GMT + - Thu, 27 Jul 2023 15:37:20 GMT expires: - '-1' pragma: @@ -1025,14 +1025,14 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"InProgress","startTime":"2023-07-26T23:17:03.0178956"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064","name":"774b1d62-5fa3-45f3-a490-2a7ec2c10064","status":"InProgress","startTime":"2023-07-27T15:37:13.3436982"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -1040,7 +1040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:13 GMT + - Thu, 27 Jul 2023 15:37:24 GMT expires: - '-1' pragma: @@ -1077,14 +1077,14 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/eeb86ac5-e785-4425-935a-f547e5dea97a","name":"eeb86ac5-e785-4425-935a-f547e5dea97a","status":"Succeeded","startTime":"2023-07-26T23:17:03.0178956"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/managedEnvironmentOperationStatuses/774b1d62-5fa3-45f3-a490-2a7ec2c10064","name":"774b1d62-5fa3-45f3-a490-2a7ec2c10064","status":"Succeeded","startTime":"2023-07-27T15:37:13.3436982"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -1092,7 +1092,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:15 GMT + - Thu, 27 Jul 2023 15:37:25 GMT expires: - '-1' pragma: @@ -1133,19 +1133,19 @@ 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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:11.5666998","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:11.5666998"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whitemeadow-822655d4.northcentralusstage.azurecontainerapps.io","staticIp":"20.83.1.138","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"55aa33c7-eb79-4b7f-9992-af9d7f904966","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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 + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: - - '1567' + - '1569' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:16 GMT + - Thu, 27 Jul 2023 15:37:27 GMT expires: - '-1' pragma: @@ -1294,7 +1294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:16 GMT + - Thu, 27 Jul 2023 15:37:27 GMT expires: - '-1' pragma: @@ -1329,19 +1329,19 @@ 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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:11.5666998","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:11.5666998"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whitemeadow-822655d4.northcentralusstage.azurecontainerapps.io","staticIp":"20.83.1.138","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"55aa33c7-eb79-4b7f-9992-af9d7f904966","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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 + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: - - '1567' + - '1569' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:17 GMT + - Thu, 27 Jul 2023 15:37:27 GMT expires: - '-1' pragma: @@ -1490,7 +1490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:17 GMT + - Thu, 27 Jul 2023 15:37:28 GMT expires: - '-1' pragma: @@ -1525,19 +1525,19 @@ 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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:11.5666998","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:11.5666998"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whitemeadow-822655d4.northcentralusstage.azurecontainerapps.io","staticIp":"20.83.1.138","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"55aa33c7-eb79-4b7f-9992-af9d7f904966","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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 + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: - - '1567' + - '1569' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:18 GMT + - Thu, 27 Jul 2023 15:37:28 GMT expires: - '-1' pragma: @@ -1687,7 +1687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:18 GMT + - Thu, 27 Jul 2023 15:37:29 GMT expires: - '-1' pragma: @@ -1723,19 +1723,19 @@ 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":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.4671342","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.4671342"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicebay-605ebf17.northcentralusstage.azurecontainerapps.io","staticIp":"13.89.140.233","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"bdb0233c-6f58-4a92-98da-2fbd96268cf6","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:11.5666998","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:11.5666998"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whitemeadow-822655d4.northcentralusstage.azurecontainerapps.io","staticIp":"20.83.1.138","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"55aa33c7-eb79-4b7f-9992-af9d7f904966","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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 + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: - - '1567' + - '1569' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:19 GMT + - Thu, 27 Jul 2023 15:37:29 GMT expires: - '-1' pragma: @@ -1885,7 +1885,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:19 GMT + - Thu, 27 Jul 2023 15:37:30 GMT expires: - '-1' pragma: @@ -1933,12 +1933,12 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:30.9199596Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:30.9199596Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappsjobOperationStatuses/0d1e693a-b066-4456-8a1b-203163073c91?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappsjobOperationStatuses/1ea01b42-fa45-45fa-ba5f-536e4e725434?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: @@ -1946,7 +1946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:20 GMT + - Thu, 27 Jul 2023 15:37:30 GMT expires: - '-1' pragma: @@ -1988,222 +1988,10 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1361' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 23:17: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 job create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --environment --replica-timeout --replica-retry-limit - --trigger-type --replica-completion-count --parallelism --image --cpu --memory - User-Agent: - - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - AZURECLI/2.49.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1361' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 23:17: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 job create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --environment --replica-timeout --replica-retry-limit - --trigger-type --replica-completion-count --parallelism --image --cpu --memory - User-Agent: - - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - AZURECLI/2.49.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1361' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 23:17:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp job create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --environment --replica-timeout --replica-retry-limit - --trigger-type --replica-completion-count --parallelism --image --cpu --memory - User-Agent: - - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - AZURECLI/2.49.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview - cache-control: - - no-cache - content-length: - - '1361' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Jul 2023 23:17: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 job create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --environment --replica-timeout --replica-retry-limit - --trigger-type --replica-completion-count --parallelism --image --cpu --memory - User-Agent: - - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - AZURECLI/2.49.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003?api-version=2023-04-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:30.9199596","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:30.9199596"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -2211,7 +1999,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:32 GMT + - Thu, 27 Jul 2023 15:37:31 GMT expires: - '-1' pragma: @@ -2253,10 +2041,10 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:30.9199596","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:30.9199596"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -2264,7 +2052,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:34 GMT + - Thu, 27 Jul 2023 15:37:34 GMT expires: - '-1' pragma: @@ -2306,10 +2094,10 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:30.9199596","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:30.9199596"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -2317,7 +2105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:37 GMT + - Thu, 27 Jul 2023 15:37:37 GMT expires: - '-1' pragma: @@ -2466,7 +2254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:36 GMT + - Thu, 27 Jul 2023 15:37:37 GMT expires: - '-1' pragma: @@ -2501,10 +2289,10 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:30.9199596","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:30.9199596"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -2512,7 +2300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:37 GMT + - Thu, 27 Jul 2023 15:37:37 GMT expires: - '-1' pragma: @@ -2558,10 +2346,10 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-7umaunn","name":"job3000003-7umaunn"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-54jyiz9","name":"job3000003-54jyiz9"}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -2569,7 +2357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:39 GMT + - Thu, 27 Jul 2023 15:37:39 GMT expires: - '-1' pragma: @@ -2608,13 +2396,13 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-7umaunn?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-54jyiz9?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-7umaunn","name":"job3000003-7umaunn","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:17:39+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3-custom-exec","resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-54jyiz9","name":"job3000003-54jyiz9","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-27T15:37:39+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3-custom-exec","resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[]}}}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -2622,7 +2410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:39 GMT + - Thu, 27 Jul 2023 15:37:40 GMT expires: - '-1' pragma: @@ -2663,10 +2451,10 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003","name":"job3000003","type":"Microsoft.App/jobs","location":"North - Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:20.3725661","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:20.3725661"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' + Central US (Stage)","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:30.9199596","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:30.9199596"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job3000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job3000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -2674,7 +2462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:40 GMT + - Thu, 27 Jul 2023 15:37:41 GMT expires: - '-1' pragma: @@ -2697,7 +2485,9 @@ interactions: - request: body: '{"containers": [{"image": "mcr.microsoft.com/k8se/quickstart-jobs:latest", "name": "test-yaml-execution", "env": [{"name": "MY_ENV_VAR", "value": "hello"}], - "resources": {"cpu": 0.5, "memory": "1Gi"}}]}' + "resources": {"cpu": 0.5, "memory": "1Gi"}}], "initContainers": [{"image": "k8seteste2e.azurecr.io/e2e-apps/kuar:green", + "name": "simple-sleep-container", "command": ["/bin/sh", "-c", "sleep 10"], + "resources": {"cpu": 0.25, "memory": "0.5Gi"}}]}' headers: Accept: - '*/*' @@ -2708,7 +2498,7 @@ interactions: Connection: - keep-alive Content-Length: - - '202' + - '402' Content-Type: - application/json ParameterSetName: @@ -2720,10 +2510,10 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-78otgvr","name":"job3000003-78otgvr"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-jtybxfq","name":"job3000003-jtybxfq"}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: @@ -2731,7 +2521,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:41 GMT + - Thu, 27 Jul 2023 15:37:41 GMT expires: - '-1' pragma: @@ -2770,21 +2560,22 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-78otgvr?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-jtybxfq?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-78otgvr","name":"job3000003-78otgvr","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:17:41+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"test-yaml-execution","env":[{"name":"MY_ENV_VAR","value":"hello"}],"resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job3000003/executions/job3000003-jtybxfq","name":"job3000003-jtybxfq","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-27T15:37:42+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"test-yaml-execution","env":[{"name":"MY_ENV_VAR","value":"hello"}],"resources":{"cpu":0.500,"memory":"1Gi"}}],"initContainers":[{"image":"k8seteste2e.azurecr.io/e2e-apps/kuar:green","name":"simple-sleep-container","command":["/bin/sh","-c","sleep + 10"],"resources":{"cpu":0.250,"memory":"0.5Gi"}}]}}}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview cache-control: - no-cache content-length: - - '525' + - '692' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:42 GMT + - Thu, 27 Jul 2023 15:37:41 GMT expires: - '-1' pragma: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml index 068ef3e937e..0fa343a5dbc 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_job_executionstest_e2e.yaml @@ -23,7 +23,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:16:59.0469599Z"},"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-26T23:16:59.0469599Z","modifiedDate":"2023-07-26T23:16:59.0469599Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"fb0a71c8-9298-4ae1-a28c-59f7237502b4","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-27T15:37:10.0673391Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-27T15:37:10.0673391Z","modifiedDate":"2023-07-27T15:37:10.0673391Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -36,7 +36,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:58 GMT + - Thu, 27 Jul 2023 15:37:10 GMT expires: - '-1' location: @@ -75,7 +75,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-26T23:16:59.0469599Z"},"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-26T23:16:59.0469599Z","modifiedDate":"2023-07-26T23:16:59.0469599Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"fb0a71c8-9298-4ae1-a28c-59f7237502b4","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-07-27T15:37:10.0673391Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-07-27T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-07-27T15:37:10.0673391Z","modifiedDate":"2023-07-27T15:37:10.0673391Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -88,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:58 GMT + - Thu, 27 Jul 2023 15:37:10 GMT expires: - '-1' pragma: @@ -129,7 +129,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01 response: body: - string: '{"primarySharedKey":"5HAue1E8eiPOnD7ZMKeybEldTMXm1puEJUvEb/Q3NF12N03oODXhDoMifO0+0/vwFT0pe1360WZ+YH+AetRDCQ==","secondarySharedKey":"wzzQQZf8KmS5mis7MYGC4+a4xjgL9OPUHDZaDAJ7reLwUdGChXSVxWd82RoZsPk3rMuR5rTx4CLym6MvGf/P8g=="}' + string: '{"primarySharedKey":"e3M2DnRJ/eIRb9QqSRqY0vSeZrDV3g0o8d+Vq8dcaakV7EeX+ZRFFfgttdkiKR2rpl8UIKlWrlCuIsCd07Eo6Q==","secondarySharedKey":"JpGfRYkSocnflkm8hMoPLeFuy8Ao0qISu2jnGsgG+TWy2DIhBUenq8kPMyWn4c3txSDKamSmpV6EEddoy1Kycw=="}' headers: access-control-allow-origin: - '*' @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:59 GMT + - Thu, 27 Jul 2023 15:37:10 GMT expires: - '-1' pragma: @@ -293,7 +293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:59 GMT + - Thu, 27 Jul 2023 15:37:10 GMT expires: - '-1' pragma: @@ -436,7 +436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:59 GMT + - Thu, 27 Jul 2023 15:37:11 GMT expires: - '-1' pragma: @@ -579,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:16:59 GMT + - Thu, 27 Jul 2023 15:37:11 GMT expires: - '-1' pragma: @@ -722,7 +722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:00 GMT + - Thu, 27 Jul 2023 15:37:11 GMT expires: - '-1' pragma: @@ -739,8 +739,8 @@ interactions: - request: body: '{"location": "eastus", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "09646a4d-3f52-43da-b126-09d701ebc560", - "sharedKey": "5HAue1E8eiPOnD7ZMKeybEldTMXm1puEJUvEb/Q3NF12N03oODXhDoMifO0+0/vwFT0pe1360WZ+YH+AetRDCQ=="}}, + "logAnalyticsConfiguration": {"customerId": "fb0a71c8-9298-4ae1-a28c-59f7237502b4", + "sharedKey": "e3M2DnRJ/eIRb9QqSRqY0vSeZrDV3g0o8d+Vq8dcaakV7EeX+ZRFFfgttdkiKR2rpl8UIKlWrlCuIsCd07Eo6Q=="}}, "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": false}}' headers: @@ -766,21 +766,21 @@ 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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:12.5955269Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:12.5955269Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whiterock-738d6f6f.eastus.azurecontainerapps.io","staticIp":"20.241.163.169","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fb0a71c8-9298-4ae1-a28c-59f7237502b4","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:04 GMT + - Thu, 27 Jul 2023 15:37:14 GMT expires: - '-1' pragma: @@ -817,10 +817,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777","name":"1374fa89-575b-4780-b945-eee4f07b8777","status":"InProgress","startTime":"2023-07-27T15:37:14.5439157"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -832,7 +832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:04 GMT + - Thu, 27 Jul 2023 15:37:14 GMT expires: - '-1' pragma: @@ -869,10 +869,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777","name":"1374fa89-575b-4780-b945-eee4f07b8777","status":"InProgress","startTime":"2023-07-27T15:37:14.5439157"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -884,7 +884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:07 GMT + - Thu, 27 Jul 2023 15:37:17 GMT expires: - '-1' pragma: @@ -921,10 +921,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777","name":"1374fa89-575b-4780-b945-eee4f07b8777","status":"InProgress","startTime":"2023-07-27T15:37:14.5439157"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -936,7 +936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:09 GMT + - Thu, 27 Jul 2023 15:37:19 GMT expires: - '-1' pragma: @@ -973,10 +973,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777","name":"1374fa89-575b-4780-b945-eee4f07b8777","status":"InProgress","startTime":"2023-07-27T15:37:14.5439157"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -988,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:11 GMT + - Thu, 27 Jul 2023 15:37:22 GMT expires: - '-1' pragma: @@ -1025,10 +1025,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777","name":"1374fa89-575b-4780-b945-eee4f07b8777","status":"InProgress","startTime":"2023-07-27T15:37:14.5439157"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1040,7 +1040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:14 GMT + - Thu, 27 Jul 2023 15:37:24 GMT expires: - '-1' pragma: @@ -1077,10 +1077,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777","name":"1374fa89-575b-4780-b945-eee4f07b8777","status":"InProgress","startTime":"2023-07-27T15:37:14.5439157"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1092,7 +1092,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:17 GMT + - Thu, 27 Jul 2023 15:37:27 GMT expires: - '-1' pragma: @@ -1129,10 +1129,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"InProgress","startTime":"2023-07-26T23:17:04.4480695"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777","name":"1374fa89-575b-4780-b945-eee4f07b8777","status":"InProgress","startTime":"2023-07-27T15:37:14.5439157"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1144,7 +1144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:19 GMT + - Thu, 27 Jul 2023 15:37:30 GMT expires: - '-1' pragma: @@ -1181,10 +1181,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/160926eb-fdcc-496f-8623-7ff96a32b6f5","name":"160926eb-fdcc-496f-8623-7ff96a32b6f5","status":"Succeeded","startTime":"2023-07-26T23:17:04.4480695"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1374fa89-575b-4780-b945-eee4f07b8777","name":"1374fa89-575b-4780-b945-eee4f07b8777","status":"Succeeded","startTime":"2023-07-27T15:37:14.5439157"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, @@ -1196,7 +1196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:22 GMT + - Thu, 27 Jul 2023 15:37:32 GMT expires: - '-1' pragma: @@ -1237,7 +1237,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:12.5955269","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:12.5955269"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whiterock-738d6f6f.eastus.azurecontainerapps.io","staticIp":"20.241.163.169","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fb0a71c8-9298-4ae1-a28c-59f7237502b4","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1245,11 +1245,11 @@ interactions: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:23 GMT + - Thu, 27 Jul 2023 15:37:32 GMT expires: - '-1' pragma: @@ -1398,7 +1398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:23 GMT + - Thu, 27 Jul 2023 15:37:33 GMT expires: - '-1' pragma: @@ -1433,7 +1433,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:12.5955269","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:12.5955269"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whiterock-738d6f6f.eastus.azurecontainerapps.io","staticIp":"20.241.163.169","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fb0a71c8-9298-4ae1-a28c-59f7237502b4","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1441,11 +1441,11 @@ interactions: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:24 GMT + - Thu, 27 Jul 2023 15:37:33 GMT expires: - '-1' pragma: @@ -1594,7 +1594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:24 GMT + - Thu, 27 Jul 2023 15:37:34 GMT expires: - '-1' pragma: @@ -1629,7 +1629,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:12.5955269","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:12.5955269"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whiterock-738d6f6f.eastus.azurecontainerapps.io","staticIp":"20.241.163.169","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fb0a71c8-9298-4ae1-a28c-59f7237502b4","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1637,11 +1637,11 @@ interactions: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:24 GMT + - Thu, 27 Jul 2023 15:37:34 GMT expires: - '-1' pragma: @@ -1791,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:25 GMT + - Thu, 27 Jul 2023 15:37:34 GMT expires: - '-1' pragma: @@ -1827,7 +1827,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":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:01.333638","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:01.333638"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"blackforest-02189cf4.eastus.azurecontainerapps.io","staticIp":"20.185.72.76","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"09646a4d-3f52-43da-b126-09d701ebc560","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:12.5955269","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:12.5955269"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"whiterock-738d6f6f.eastus.azurecontainerapps.io","staticIp":"20.241.163.169","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"fb0a71c8-9298-4ae1-a28c-59f7237502b4","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.8"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"A9C4A62A8160201BC233070CC5FF02E5C573D0555962F6695C6FB395825498DC","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, @@ -1835,11 +1835,11 @@ interactions: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:26 GMT + - Thu, 27 Jul 2023 15:37:36 GMT expires: - '-1' pragma: @@ -1989,7 +1989,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:25 GMT + - Thu, 27 Jul 2023 15:37:36 GMT expires: - '-1' pragma: @@ -2037,13 +2037,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:37.0577385Z","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:37.0577385Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 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/East - US/containerappsjobOperationStatuses/a5497f7a-90b5-46bf-8b15-34a66a0a0066?api-version=2023-04-01-preview&azureAsyncOperation=true + US/containerappsjobOperationStatuses/33ef1d58-d8bf-4f84-9b83-24a44a7cdc8c?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: @@ -2051,7 +2051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:27 GMT + - Thu, 27 Jul 2023 15:37:37 GMT expires: - '-1' pragma: @@ -2093,7 +2093,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:37.0577385","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:37.0577385"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2104,7 +2104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:28 GMT + - Thu, 27 Jul 2023 15:37:38 GMT expires: - '-1' pragma: @@ -2146,7 +2146,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:37.0577385","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:37.0577385"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2157,7 +2157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:30 GMT + - Thu, 27 Jul 2023 15:37:40 GMT expires: - '-1' pragma: @@ -2199,7 +2199,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:37.0577385","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:37.0577385"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2210,7 +2210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:33 GMT + - Thu, 27 Jul 2023 15:37:43 GMT expires: - '-1' pragma: @@ -2359,7 +2359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:33 GMT + - Thu, 27 Jul 2023 15:37:43 GMT expires: - '-1' pragma: @@ -2394,7 +2394,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003","name":"job2000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-26T23:17:27.0816945","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-26T23:17:27.0816945"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"anfranci@microsoft.com","createdByType":"User","createdAt":"2023-07-27T15:37:37.0577385","lastModifiedBy":"anfranci@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-27T15:37:37.0577385"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileName":null,"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":1,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/job2000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2405,7 +2405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:34 GMT + - Thu, 27 Jul 2023 15:37:44 GMT expires: - '-1' pragma: @@ -2447,7 +2447,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-prrf1br","name":"job2000003-prrf1br"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-4rmnp6w","name":"job2000003-4rmnp6w"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2458,7 +2458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:36 GMT + - Thu, 27 Jul 2023 15:37:45 GMT expires: - '-1' pragma: @@ -2500,7 +2500,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions?api-version=2023-04-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-prrf1br","name":"job2000003-prrf1br","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:17:36+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-4rmnp6w","name":"job2000003-4rmnp6w","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-27T15:37:46+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2511,7 +2511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:37 GMT + - Thu, 27 Jul 2023 15:37:47 GMT expires: - '-1' pragma: @@ -2548,10 +2548,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-prrf1br?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-4rmnp6w?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-prrf1br","name":"job2000003-prrf1br","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-26T23:17:36+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-4rmnp6w","name":"job2000003-4rmnp6w","type":"Microsoft.App/jobs/executions","properties":{"status":"Running","startTime":"2023-07-27T15:37:46+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2562,7 +2562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:38 GMT + - Thu, 27 Jul 2023 15:37:48 GMT expires: - '-1' pragma: @@ -2604,7 +2604,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/start?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-6y34afl","name":"job2000003-6y34afl"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-cbfrisd","name":"job2000003-cbfrisd"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2615,7 +2615,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:39 GMT + - Thu, 27 Jul 2023 15:37:48 GMT expires: - '-1' pragma: @@ -2658,10 +2658,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/stop/job2000003-6y34afl?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/stop/job2000003-cbfrisd?api-version=2023-04-01-preview response: body: - string: '"Job Execution: job2000003-6y34afl, stopped successfully."' + string: '"Job Execution: job2000003-cbfrisd, stopped successfully."' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2672,7 +2672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:39 GMT + - Thu, 27 Jul 2023 15:37:49 GMT expires: - '-1' pragma: @@ -2711,10 +2711,10 @@ interactions: - python/3.10.6 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-6y34afl?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-cbfrisd?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-6y34afl","name":"job2000003-6y34afl","type":"Microsoft.App/jobs/executions","properties":{"status":"Stopped","startTime":"2023-07-26T23:17:39+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/job2000003/executions/job2000003-cbfrisd","name":"job2000003-cbfrisd","type":"Microsoft.App/jobs/executions","properties":{"status":"Stopped","startTime":"2023-07-27T15:37:48+00:00","template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"job2000003","resources":{"cpu":0.250,"memory":"0.5Gi"}}],"initContainers":[]}}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview @@ -2725,7 +2725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Jul 2023 23:17:39 GMT + - Thu, 27 Jul 2023 15:37:49 GMT expires: - '-1' pragma: diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py b/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py index 210ada92c17..e23239e82ea 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerappjob_executions.py @@ -137,6 +137,16 @@ def test_containerapp_job_custom_executionstest_e2e(self, resource_group): resources: cpu: 0.5 memory: 1Gi + initContainers: + - command: + - /bin/sh + - -c + - sleep 10 + image: k8seteste2e.azurecr.io/e2e-apps/kuar:green + name: simple-sleep-container + resources: + cpu: "0.25" + memory: 0.5Gi """ containerappjob_file_name = f"{self._testMethodName}_containerappjob.yml" write_test_file(containerappjob_file_name, containerappjobexecution_yaml_text) @@ -151,6 +161,10 @@ def test_containerapp_job_custom_executionstest_e2e(self, resource_group): JMESPathCheck('properties.template.containers[0].name', "test-yaml-execution"), JMESPathCheck('properties.template.containers[0].image', "mcr.microsoft.com/k8se/quickstart-jobs:latest"), JMESPathCheck('properties.template.containers[0].resources.cpu', '0.5'), - JMESPathCheck('properties.template.containers[0].resources.memory', '1Gi') + JMESPathCheck('properties.template.containers[0].resources.memory', '1Gi'), + JMESPathCheck('properties.template.initContainers[0].name', "simple-sleep-container"), + JMESPathCheck('properties.template.initContainers[0].image', "k8seteste2e.azurecr.io/e2e-apps/kuar:green"), + JMESPathCheck('properties.template.initContainers[0].resources.cpu', '0.25'), + JMESPathCheck('properties.template.initContainers[0].resources.memory', '0.5Gi') ]) clean_up_test_file(containerappjob_file_name) \ No newline at end of file